/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# chmod 777 every subdirectory find . -type d -exec chmod 777 {} \; # chmod 666 every file find . -type f -exec chmod 666 {} \;