Chmod just directories
find -type d -print0 |xargs -0 chmod 755
Chmod just files
find -type f -print0 |xargs -0 chmod 644
Where I go for Geek
Chmod just directories
find -type d -print0 |xargs -0 chmod 755
Chmod just files
find -type f -print0 |xargs -0 chmod 644