Skip to content

Instantly share code, notes, and snippets.

@melloc01
Last active May 4, 2016 18:04
Show Gist options
  • Save melloc01/03e232e3f30608cc060a to your computer and use it in GitHub Desktop.
Save melloc01/03e232e3f30608cc060a to your computer and use it in GitHub Desktop.
Fix unix file & dir permissions
sudo find . -type d -exec chmod 775 {} \; && find . -type f -exec chmod 664 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment