/ Published in: Bash
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 . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Similarly, the following will chmod all files only (and ignore the directories):
find . -type f -exec chmod 644 {} \;
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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 . -type f -exec chmod 644 {} \;
URL: http://movabletripe.com/archive/recursively-chmod-directories-only/