Previous Section  < Day Day Up >  Next Section

chmod—changes the permissions mode of a file


chmod [ –fR ] mode filename...

chmod [ugoa ]{ + | – | = }[ rwxlsStTugo] filename...


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.

Example A.10.

1   chmod +x script.file

2   chmod u+x,g-x file

3   chmod 755 *


EXPLANATION

  1. Turns on execute permission for user, group, and others on script.file.

  2. Turns on execute permission for user, and removes it from group on file.

  3. 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 ).

    
    rwxxr-xr-x
    
    

    Previous Section  < Day Day Up >  Next Section