find and delete Thumbs directory
If you want to delete all the Thumbs directories in your iPhoto Library for some reason:
Edit: a better solution by bcrow:
for file in $( find . -name "Thumbs" ) ; do rm -r $file; done
Edit: a better solution by bcrow:
find . -name "Thumbs" -exec rm -r {} \;