Recursive chmod-ing
2013-04-19
From http://chrisgilligan.com/wordpress/chmod-recursive-files-only-directories-type/
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
Written on April 19, 2013
Web Developer from Indiana
From http://chrisgilligan.com/wordpress/chmod-recursive-files-only-directories-type/
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;