Skip to content

Instantly share code, notes, and snippets.

@dukeofgaming
Created June 9, 2014 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dukeofgaming/010ddb1dc0877f997c31 to your computer and use it in GitHub Desktop.
Save dukeofgaming/010ddb1dc0877f997c31 to your computer and use it in GitHub Desktop.
Recursively change permissions
#Taken from http://movabletripe.com/archive/recursively-chmod-directories-only/
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment