Find and delete files with specific content

Ever wanted to deleted (or move, copy, what else) all files in a directory? It’s quite easy:

egrep -l NEEDLE * | xargs rm

This command will find all files with NEEDLE in it, pipes the filename (that’s because we need the parameter L) to xargs which then use the STDIN (our filename) and put’s it to rm.

Just play around with it the possible parameters. It would save you a lot of time.

Leave a Reply

Your email address will not be published. Required fields are marked *