DZone 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
Recursively Remove .DS_Store Files In OS X
This shell alias will recursively remove all .DS_Store files from the current directory up.
alias rmdsstores='find ./ -type f | grep .DS_Store | xargs rm'





Comments
Snippets Manager replied on Fri, 2009/01/30 - 12:14am
find . -name '*.DS_Store' -type f -deleteSnippets Manager replied on Wed, 2007/05/16 - 7:54pm
Batzooh Revil replied on Tue, 2008/01/15 - 11:59am
find . -name *.DS_Store -type f -exec rm {} \;