Skip to content

Instantly share code, notes, and snippets.

@anabelle
Created February 15, 2012 16:21
Show Gist options
  • Save anabelle/1837021 to your computer and use it in GitHub Desktop.
Save anabelle/1837021 to your computer and use it in GitHub Desktop.
find . -type d -print0 | xargs -0 chmod 0755 # For directories
find . -type f -print0 | xargs -0 chmod 0644 # For files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment