/ Published in: Bash
Expand |
Embed | Plain Text
# chmod 777 every subdirectory find . -type d -exec chmod 777 {} \; # chmod 666 every file find . -type f -exec chmod 666 {} \;
You need to login to post a comment.
# chmod 777 every subdirectory find . -type d -exec chmod 777 {} \; # chmod 666 every file find . -type f -exec chmod 666 {} \;
You need to login to post a comment.