Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

find and delete Thumbs directory

If you want to delete all the Thumbs directories in your iPhoto Library for some reason:

for file in $( find . -name "Thumbs" ) ; do rm -r $file; done


Edit: a better solution by bcrow:
find . -name "Thumbs" -exec rm -r {} \;
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed