Skip to content

Instantly share code, notes, and snippets.

@jkanclerz
Created December 20, 2016 13:14
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 jkanclerz/3f3efec693086852f1752b7423e198de to your computer and use it in GitHub Desktop.
Save jkanclerz/3f3efec693086852f1752b7423e198de to your computer and use it in GitHub Desktop.
Fix files dir permissions
#set 775 for all directories
find . -type d -exec chmod 775 {} \;
#set 664 for all files
find . -type f -exec chmod 664 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment