stat.2: Improve description of some mode constants

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Andreas Gruenbacher 2015-04-21 13:07:05 +02:00 committed by Michael Kerrisk
parent b82cc8c776
commit b0c5363f3e
1 changed files with 3 additions and 3 deletions

View File

@ -381,18 +381,18 @@ S_ISUID 0004000 set-user-ID bit
S_ISGID 0002000 set-group-ID bit (see below)
S_ISVTX 0001000 sticky bit (see below)
S_IRWXU 00700 mask for file owner permissions
S_IRWXU 00700 owner has read, write and execute permission
S_IRUSR 00400 owner has read permission
S_IWUSR 00200 owner has write permission
S_IXUSR 00100 owner has execute permission
S_IRWXG 00070 mask for group permissions
S_IRWXG 00070 group has read, write and execute permission
S_IRGRP 00040 group has read permission
S_IWGRP 00020 group has write permission
S_IXGRP 00010 group has execute permission
S_IRWXO 00007 T{
mask for permissions for others (not in group)
others (not in group) have read, write and execute permission
T}
S_IROTH 00004 others have read permission
S_IWOTH 00002 others have write permission