Help for this page

Select Code to Download


  1. or download this
    $ locate /.DS_Store
    
  2. or download this
    $ locate /.DS_Store | xargs rm
    
  3. or download this
    find / -name .DS_Store -type f
    
  4. or download this
    find / -name .DS_Store -type f -print0 | xargs -0 rm
    
  5. or download this
    find / -name .DS_Store -type f -exec rm \;
    
  6. or download this
    find / -name .DS_Store -type f -exec rm {} \+
    
  7. or download this
    find / -name .DS_Store -type f -delete
    
  8. or download this
    find / -name .DS_Store -type f -print -delete