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 things that I have found to be useful.
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 {} \;