Created
February 3, 2015 07:30
-
-
Save CreatorB/a9629f475451ac5cda85 to your computer and use it in GitHub Desktop.
chmod exception - creatorb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 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