Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidromani/cfb6a5bde3217975eac1bbc665b778ef to your computer and use it in GitHub Desktop.
Save davidromani/cfb6a5bde3217975eac1bbc665b778ef to your computer and use it in GitHub Desktop.
# 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 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment