使用grep进行负面匹配(匹配不包含foo的行)

我一直在试图找出这个命令的语法:

grep ! error_log | find /home/foo/public_html/ -mmin -60

要么

grep '[^error_log]' | find /home/baumerf/public_html/ -mmin -60

除了那些名为error_log文件外,我需要查看所有已修改的文件。

我在这里阅读过它,但只发现一个not表达式模式。


grep -v是你的朋友:

grep --help | grep invert  

-v,--invert-match选择不匹配的行

还要检查相关的-L-l的补码)。

-L,--files-without-match仅打印不包含匹配的FILE名称


您也可以将awk用于这些目的,因为它允许您以更清晰的方式执行更复杂的检查:

不包含foo

awk '!/foo/'

不包含foobar

awk '!/foo/ && !/bar/'

不包含foobar但包含foo2bar2

awk '!/foo/ && !/bar/ && (/foo2/ || /bar2/)'

等等。


在你的情况下,你可能不想使用grep,而是在find命令中添加一个负面的子句,例如

find /home/baumerf/public_html/ -mmin -60 -not -name error_log

如果您想在名称中包含通配符,则必须转义它们,例如排除带有后缀.log的文件:

find /home/baumerf/public_html/ -mmin -60 -not -name *.log
链接地址: http://www.djcxy.com/p/12885.html

上一篇: Negative matching using grep (match lines that do not contain foo)

下一篇: CAGradientLayer messes up CATransform3DRotate