I would like to change my directories to 755 and files to 644 recursively and I think I need to run a command such as..
find * -type d -print0 | xargs -0 chmod 0755 # for directories
find . -type f -print0 | xargs -0 chmod 0644 # for files
or maybe
chmod -R u+rwX,go+rX,go-w /path
Anyway, I am...