Fixing directory permissions with find

Screwing directories and files with setgid bit: chmod -R 2775 photos

Fixing file permissions with find: find . -type f -exec chmod 664 {} ‘;’

Leave a Reply