Skip to content

Instantly share code, notes, and snippets.

@RSully
Created March 22, 2013 14:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RSully/5221647 to your computer and use it in GitHub Desktop.
Save RSully/5221647 to your computer and use it in GitHub Desktop.
Update file perms for PHP
find . -type f -print0 | xargs -0 chmod 644
find . -type d -print0 | xargs -0 chmod 755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment