dave-hunt
4/6/2014 - 10:58 PM

Linux chmod command for recursive files and directories separately

Linux chmod command for recursive files and directories separately

find . -type f -exec chmod 755 {} \;
find . -type d -exec chmod 644 {} \;