The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 06-11-2007
solfreak's Avatar
solfreak solfreak is offline
Registered User
 

Join Date: Jun 2007
Posts: 35
Using xargs will be faster:

find / -name Thumbs.db -o -name desktop.ini | xargs rm -f
Reply With Quote