sticky-check -> setgid-check
[coreutils.git] / man / chmod.x
blobd581013f91b526dcbbbe6227980b5d853138ed6f
1 [NAME]
2 chmod \- change file access permissions
3 [DESCRIPTION]
4 This manual page
5 documents the GNU version of
6 .BR chmod .
7 .B chmod
8 changes the permissions of each given file according to
9 .IR mode ,
10 which can be either a symbolic representation of changes to make, or
11 an octal number representing the bit pattern for the new permissions.
12 .PP
13 The format of a symbolic mode is
14 `[ugoa...][[+-=][rwxXstugo...]...][,...]'.  Multiple symbolic
15 operations can be given, separated by commas.
16 .PP
17 A combination of the letters `ugoa' controls which users' access to
18 the file will be changed: the user who owns it (u), other users in the
19 file's group (g), other users not in the file's group (o), or all
20 users (a).  If none of these are given, the effect is as if `a' were
21 given, but bits that are set in the umask are not affected.
22 .PP
23 The operator `+' causes the permissions selected to be added to the
24 existing permissions of each file; `-' causes them to be removed; and
25 `=' causes them to be the only permissions that the file has.
26 .PP
27 The letters `rwxXstugo' select the new permissions for the affected
28 users: read (r), write (w), execute (or access for directories) (x),
29 execute only if the file is a directory or already has execute
30 permission for some user (X), set user or group ID on execution (s),
31 save program text on swap device (t), the permissions that the user
32 who owns the file currently has for it (u), the permissions that other
33 users in the file's group have for it (g), and the permissions that
34 other users not in the file's group have for it (o).
35 .PP
36 A numeric mode is from one to four octal digits (0-7), derived by
37 adding up the bits with values 4, 2, and 1.  Any omitted digits are
38 assumed to be leading zeros.  The first digit selects the set user ID
39 (4) and set group ID (2) and save text image (1) attributes.  The
40 second digit selects permissions for the user who owns the file: read
41 (4), write (2), and execute (1); the third selects permissions for
42 other users in the file's group, with the same values; and the fourth
43 for other users not in the file's group, with the same values.
44 .PP
45 .B chmod
46 never changes the permissions of symbolic links; the
47 .B chmod
48 system call cannot change their permissions.  This is not a problem
49 since the permissions of symbolic links are never used.
50 However, for each symbolic link listed on the command line,
51 .B chmod
52 changes the permissions of the pointed-to file.
53 In contrast,
54 .B chmod
55 ignores symbolic links encountered during recursive directory
56 traversals.
57 .SH OPTIONS