Recursively Remove .DS_Store Files In OS X
Join the DZone community and get the full member experience.
Join For FreeThis shell alias will recursively remove all .DS_Store files from the current directory up.
alias rmdsstores='find ./ -type f | grep .DS_Store | xargs rm'
Opinions expressed by DZone contributors are their own.
Trending
-
Knowing and Valuing Apache Kafka’s ISR (In-Sync Replicas)
-
How To Use Git Cherry-Pick to Apply Selected Commits
-
Extending Java APIs: Add Missing Features Without the Hassle
-
Decoding ChatGPT: The Concerns We All Should Be Aware Of
Comments