Skip to content

Instantly share code, notes, and snippets.

@lucasmotta
Created November 7, 2014 11:10
Show Gist options
  • Save lucasmotta/bb8d85c59448f9dcaa53 to your computer and use it in GitHub Desktop.
Save lucasmotta/bb8d85c59448f9dcaa53 to your computer and use it in GitHub Desktop.
Change all 777 directories only to 755
find . -type d -perm 777 -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment