Batch Change
$ chmod -R 644 /your\_path
$ find /path -type d -exec chmod 755 {} \;
$ find /path -type f -exec chmod 644 {} \;
See: Command Substitution
Comments
$ chmod -R 644 /your\_path
$ find /path -type d -exec chmod 755 {} \;
$ find /path -type f -exec chmod 644 {} \;
See: Command Substitution