I am trying to delete erroneous emails based on finding the email address in the file via Linux CLI.

I can get the files with

find . | xargs grep -l email@domain.com

But I cannot figure out how to delete them from there as the following code doesn't work.

rm -f | xargs find . | xargs grep -l email@domain.com

Thank you for your assistance.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

For safety I normally pipe the output from find to something like awk and create a batch file with each line being "rm filename"

That way you can check it before actually running it and manually fix any odd edge cases that are difficult to do with a regex

find . | xargs grep -l email@domain.com | awk '{print "rm "$1}' > doit.sh
vi doit.sh // check for murphy and his law
source doit.sh
link|improve this answer
feedback

@Martin Beckett posted an excellent answer, please follow that guideline

solution for your command :

grep -l t-bone@spechal.com * | xargs rm

Or

for file in $(grep -l t-bone@spechal.com *); do rm -i $file ; done
____________________________________________________^ prompt for delete
link|improve this answer
feedback

You can use find's -exec and -delete, it will only delete the file if the grep command succeeds. Using grep -q so it wouldn't print anything, you can replace the -q with -l to see which files had the string in them.

find . -exec grep -q 't-bone@spechal.com' '{}' \; -delete
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.