Profile
Achievement
MikeyLikesIt's Recent SnippetsTagged Bash
- All /
« Prev 1 Next »
This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only.
find . -type d -exec chmod 755 {} \;
Similarly, the following will chmod all files only (and ignore the directories):
find . -...
1
825
posted 14 years ago by MikeyLikesIt