May 2000
Beginner
761 pages
18h 20m
English
chmod [-Rcfv] [--recursive] [--changes] [--silent]
[--quiet] [--verbose] [--help] [--version] mode file…
chmod changes or assigns the mode of a file. The mode of a file specifies its permissions and other attributes. The mode may be absolute or symbolic.
1 chmod +x script.file 2 chmod u+x,g-x file 3 chmod 755 * |
Explanation
Turns on execute permission for user, group, and others on script.file.
Turns on execute permission for user, and removes it from group on file.
Turns on read, write, and execute for the user, read and execute for the group, and read and execute for others on all files in the current working directory. The value is octal ( 111 101 101 ), rwxr-xr-x.
Read now
Unlock full access