Skip to content

Instantly share code, notes, and snippets.

@sashainparis
Created October 27, 2013 22:12
Show Gist options
  • Save sashainparis/7188492 to your computer and use it in GitHub Desktop.
Save sashainparis/7188492 to your computer and use it in GitHub Desktop.
chmod directories to 755 and files to 644 recursively.
$ 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