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

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

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

要么

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

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

我已经在这里读过 ,但只find一个notexpression式模式。

grep -v是你的朋友:

 grep --help | grep invert 

-v,–invert-matchselect不匹配的行

也检查出相关的-L-l的补码)。

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

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

不包含foo

 awk '!/foo/' 

不包含foobar

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

不包含foobar但包含foo2bar2

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

等等。

在你的情况下,你可能不希望使用grep,而是添加一个负面的条款,查找命令,例如

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

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

 find /home/baumerf/public_html/ -mmin -60 -not -name \*.log