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 {} \;