Delete all files whose filenames contain a particular string?

I changed my wordpress theme. The older one created so much images on server. My new theme doesnt need them, so I want to remove all. How can I do that?

For example:
Default image: 12_angry_men_lone_holdout.jpg

I want to delete:

12_angry_men_lone_holdout-290x166.jpg
12_angry_men_lone_holdout-700x300.jpg 
12_angry_men_lone_holdout-50x50.jpg

Using Digitalocean, Ubuntu 13.10.


Solution 1:

Use find to recursively find and delete files with "text" in their names:

find -type f -name '*text*' -delete

You might also want run find -type f -name '*text*' (without the -delete) before that to make sure you won't delete any files you didn't intend to delete.


In fact, you can place wildcards anywhere in the search string, so -name '12_angry_men_lone_holdout-*.jpg' might be more suitable in your case.

Solution 2:

If they are in the same folder use * wildcard to achieve that:

rm *text*

Where text is string that filename contains.

Solution 3:

Try this:

rm -rf 12_angry_men_lone_holdout-*

This will keep 12_angry_men_lone_holdout.jpg and remove files with dimensions (290x166)

And please remember

rm -rf 12_angry_men_lone_holdout.*

will delete the default file too, that you needed.

Solution 4:

find . -type f -name '*[0-9]x[0-9]*' -delete

Run this in the parent directory. This is going to delete all files that have a digit followed by an 'x' character followed by another digit in their name.

Still be careful, this might delete original files too, if their name contains the above pattern (unlikely). Run it first without '-delete' to see if you have any files that have such a name. If that's the case, you'll just need to find a more restrictive pattern.