Guest User

Untitled

a guest
Dec 12th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. format <user,group,other>
  2. 7 read, write and execute 111
  3. 6 read and write 110
  4. 5 read and execute 101
  5. 4 read only 100
  6. 3 write and execute 011
  7. 2 write only 010
  8. 1 execute only 001
  9. 0 none 000
  10.  
  11. u user the owner of the file
  12. g group users who are members of the file's group
  13. o others users who are neither the owner of the file nor members of the file's group
  14. a all all three of the above, same as ugo
  15.  
  16. r read read a file or list a directory's contents
  17. w write write to a file or directory
  18. x execute execute a file or recurse a directory tree
  19. X special execute
  20. s setuid/gid details in Special modes section
  21. t sticky details in Special modes section
  22.  
  23. chmod -R u+rwX,g-rwx,o-rx PersonalStuff
  24. chmod -R a+x,a-rw TEST
Add Comment
Please, Sign In to add comment