Skip to content

Instantly share code, notes, and snippets.

@markshust
Created March 7, 2012 20:30
Show Gist options
  • Save markshust/1995901 to your computer and use it in GitHub Desktop.
Save markshust/1995901 to your computer and use it in GitHub Desktop.
Recursively change filesystem permissions
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment