I want to output all the lines in my source code which contain the string foo but don't contain the string bar. I tried this:

find . -name "*.[hc]pp" | xargs grep -n foo | grep -x bar 

However this doesn't work as I expected. How can I use grep in this way?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You want the -v flag, not the -x flag.

Mnemonic: negative.

link|improve this answer
that did it - tyvm! lmao: I had the wrong mnemonic: eXclude – kfmfe04 Dec 2 '11 at 7:08
feedback

Your Answer

 
or
required, but never shown

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