我将文件传递到我的egrep表达式(tcpdump日志),然后我想删除所有匹配的行

代码示例:

cat file | tr -d '\000' |egrep -i 'user: | usr: ' --color=auto --line-buffered -B20


现在如何删除所有匹配的行?

最佳答案

使用-v标志


 -v, --invert-match
         Selected lines are those not matching any of the specified patterns.



cat file | tr -d '\000' |egrep -iv 'user: | usr: ' --color=auto --line-buffered -B20 > newfile

关于regex - Linux删除egrepped行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43181953/

10-12 14:19