Guest User

Untitled

a guest
Nov 18th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #folders
  4. find <dir> -type d -exec chmod 755 {} \;
  5.  
  6. #files
  7. find <dir> -type f -exec chmod 644 {} \;
Add Comment
Please, Sign In to add comment