Guest User

Untitled

a guest
Jul 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. //Files should be `644` I think
  2. find . -type f -exec chmod u=rw,g=r,o=r {} \;
  3.  
  4. // Folders should be `executable
  5. find . -type d -exec chmod u=rwx,g=rx,o=rx {} \;
Add Comment
Please, Sign In to add comment