Remove .DS_STORE files
Mac OS automatically creates .DS_STORE
files. This is how to recursively remove them from the current directory.
$ find . -type f -name ".DS_Store" -exec rm -i {} \;
Various snippets that I have found to be helpful.
Mac OS automatically creates .DS_STORE
files. This is how to recursively remove them from the current directory.
$ find . -type f -name ".DS_Store" -exec rm -i {} \;