##
$ locate /.DS_Store | xargs rm
####
find / -name .DS_Store -type f
####
find / -name .DS_Store -type f -print0 | xargs -0 rm
####
find / -name .DS_Store -type f -exec rm \;
####
find / -name .DS_Store -type f -exec rm {} \+
####
find / -name .DS_Store -type f -delete
####
find / -name .DS_Store -type f -print -delete