/usr/lib/s9fes/help/sys_getgrnam is in scheme9 2010.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | S9 EXT (sys:getgrnam string) ==> alist
(sys:getgrgid integer) ==> alist
Return the group record for the group name STRING or the group ID
INTEGER. The returned association list has the following members:
((name . string) ; group name
(gid . integer)) ; group ID
(sys:getgrnam "staff") ==> ((name . "staff") (gid . 20))
(sys:getgrgid 0) ==> ((name . "wheel") (gid . 0))
|