recursively chmod only files or directories
Mar
06
1
3
recursively chmod directories only
find . -type d -exec chmod 755 {} \;
recursively chmod files only
find . -type f -exec chmod 644 {} \;
recursively chmod directories only
find . -type d -exec chmod 755 {} \;
recursively chmod files only
find . -type f -exec chmod 644 {} \;