查看grep -L中的文件内容

时间:2014-02-26 16:08:14

标签: grep pipe cat

我使用grep -L来获取不包含某个字符串的文件列表。如何查看这些文件的内容?就像:

grep -L "pattern" | cat

2 个答案:

答案 0 :(得分:2)

您可以使用xargs

grep -L "pattern" | xargs cat

正如man xargs --> build and execute command lines from standard input所述。因此,cat返回的文件名将grep -L

答案 1 :(得分:1)

您可以使用cat并使用grep -L ...

的输出
cat $(grep -L "pattern" *.files )