Search This Blog

Monday, October 5, 2015

How to chmod all directories except files (recursively)


find /path/to/base/dir -type d -print0 | xargs -0 chmod 755
find /path/to/base/dir -type f -print0 | xargs -0 chmod 644