find . -type d -exec chmod xxx {} \; this finds all directories (excluding files) starting at present working directory and recursively changes permissions to xxx.
find /path -name "directoryname" -type d -exec rm -rf {} \;
this searches a path for a directory (named directoryname) and deleted all directories and their contents.