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