RsD0p9BK
4/26/2016 - 6:08 AM

chmod.sh

# https://toster.ru/q/104567
# http://superuser.com/questions/91935/how-to-chmod-all-directories-except-files-recursively/91966

find . -type d -exec chmod 755 {} +;
find . -type f -exec chmod 644 {} +;

chmod -R 755 .;

sudo chmod -R 0;
sudo chmod -R u+rwX,go+rX,go-w /path;