group.5: Various minor rewordings and improvements

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2009-02-23 15:52:26 +13:00
parent 3508b1f192
commit 1de5c70358
1 changed files with 4 additions and 5 deletions

View File

@ -22,13 +22,12 @@
.\" USA.
.\"
.\" Modified Sat Jul 24 17:06:03 1993 by Rik Faith (faith@cs.unc.edu)
.TH GROUP 5 1992-12-29 "Linux" "Linux Programmer's Manual"
.TH GROUP 5 2009-02-23 "Linux" "Linux Programmer's Manual"
.SH NAME
group \- user group file
.SH DESCRIPTION
\fI/etc/group\fP is an ASCII file which defines the groups to which users
belong.
There is one entry per line, and each line has the format:
\fI/etc/group\fP is a text file which defines the groups on the system.
There is one entry per line, with the following format:
.sp
.RS
group_name:passwd:GID:user_list
@ -43,7 +42,7 @@ If this field is empty, no password is needed.
.IP GID
the numerical group ID.
.IP user_list
all the group member's usernames, separated by commas.
a list of the usernames that are members of this group, separated by commas.
.SH FILES
/etc/group
.SH BUGS