UNIX Command to recursively change permissions on directories?

unix

Solution

` find . -type d -exec chmod 755 {} + `

Problem

I just want to change permissions on directories, not the files contained within.

Original source