I need to grep my logs for a particular string, but want to exclude strings that contain word "centrifugo".
for example, If I grep for xxx
I get this:
123 centrifugo 551 xxx
451 abcd xxx 334
yyyy xxx 231
Expected Output:
451 abcd xxx 334
yyyy xxx 231
What's the regex for that?