Change permissions of files and directories recursively
find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;
Change permissions of files and directories recursively
find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;