我正在尝试过滤出几个在我的日志文件中不断重复的文本块.例如
grep -v ("string one that I don't want" \| "string two that I don't want") file.log
我尝试了几种变化,并尝试调整白色空间.有时它会滤除第一个字符串,有时也不会.使用grep过滤掉多个文本块的正确格式是什么?
您可以在grep中多次使用-e选项来跳过多个搜索项目:
原文链接:https://www.f2er.com/bash/383849.htmlgrep -v -e "string one that I don't want" -e "string two that I don't want" file.log
或者使用egrep使用正则表达式
egrep -v 'string one|string two' file.log