Skip to content

Instantly share code, notes, and snippets.

@funkjedi
Created September 28, 2011 17:39
Show Gist options
  • Save funkjedi/1248612 to your computer and use it in GitHub Desktop.
Save funkjedi/1248612 to your computer and use it in GitHub Desktop.
Reset file and directory permissions
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment