To recursively chmod all files in the current directory (and sub-directories), you can do this:
find . -type d -exec chmod 755 {} \;
To do the same with just files, you can use:
find . -type f -exec chmod 644 {} \;
To recursively chmod all files in the current directory (and sub-directories), you can do this:
find . -type d -exec chmod 755 {} \;
To do the same with just files, you can use:
find . -type f -exec chmod 644 {} \;