Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "changing files permission to 644"
  4.  
  5. find . -type f -exec chmod 644 {} \;
  6.  
  7. echo "changing files permission to 755"
  8. find . -type d -exec chmod 755 {} \;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement