Skip to content

Instantly share code, notes, and snippets.

@nghuuphuoc
Created January 9, 2014 09:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nghuuphuoc/8331575 to your computer and use it in GitHub Desktop.
Save nghuuphuoc/8331575 to your computer and use it in GitHub Desktop.
chmod files to 644 and all folders to 755
$ find . -type d -print0 | xargs -0 chmod 0775
$ find . -type f -print0 | xargs -0 chmod 0664
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment