find . -name ".DS_Store" -type f -delete
If you just want to list out those files then skip the -delete flag.
find . -name ".DS_Store" -type f
find . -name ".DS_Store" -type f -delete
If you just want to list out those files then skip the -delete flag.
find . -name ".DS_Store" -type f