Skip to content

Instantly share code, notes, and snippets.

@CreatorB
Created February 3, 2015 07:30
Show Gist options
  • Save CreatorB/a9629f475451ac5cda85 to your computer and use it in GitHub Desktop.
Save CreatorB/a9629f475451ac5cda85 to your computer and use it in GitHub Desktop.
chmod exception - creatorb
* change permission only file in all subdirectories :
$ find . -type f -exec chmod 775 {} +
* change permission only folder in all subdirectories :
$ find . -type d -exec chmod 777 {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment