Skip to content

Instantly share code, notes, and snippets.

View davidromani's full-sized avatar

David Romaní davidromani

View GitHub Profile
# only apply in directories recursively
find /<PATH_TO_YOUR_DIR> -type d -exec chmod 775 {} \;
# only apply in files recursively
find /<PATH_TO_YOUR_DIR> -type f -exec chmod 664 {} \;