Skip to content

Instantly share code, notes, and snippets.

@ivandoric
Last active August 29, 2015 14:00
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 ivandoric/11211773 to your computer and use it in GitHub Desktop.
Save ivandoric/11211773 to your computer and use it in GitHub Desktop.
shell: Change all directories to 755 and all files to 644
find . -type d -print0 | xargs -0 chmod 0775 # For directories
find . -type f -print0 | xargs -0 chmod 0664 # For files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment