The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
Delete files Recursively *thumbs*.jpg
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
Delete files Recursively *thumbs*.jpg
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
06-29-2009
BrightImage
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 {} \;
BrightImage
View Public Profile
Find all posts by BrightImage
Find BrightImage's past nominations received
Find BrightImage's present nominations given