Skip to content

Instantly share code, notes, and snippets.

@michaelbonner
Created October 14, 2014 14:50
Show Gist options
  • Save michaelbonner/080f1dc01797d32f658d to your computer and use it in GitHub Desktop.
Save michaelbonner/080f1dc01797d32f658d to your computer and use it in GitHub Desktop.
Terminal | change all files' and folders' permissions in directory
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