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 the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-29-2009
BrightImage BrightImage is offline
Registered User
  
 

Join Date: Jun 2009
Location: UK
Posts: 1
change to the top level directory containing the files (using cd <dir>) and run:

find . -name \*thumbs\*.jpg -type f

if this lists all the files you want to delete then run

find . -name \*thumbs\*.jpg -type f -exec rm {} \;