用通配符grep

时间:2013-02-09 01:17:03

标签: grep wildcard

我想grep文件中的以下字符串:

directory1
directory2
directory3

有没有办法用grep同时grep所有3?

例如:

cat file.txt | grep directory[1-3]

不幸的是,上述情况不起作用

3 个答案:

答案 0 :(得分:6)

如果这些是您需要搜索的唯一字符串,请使用-F(grep表示固定字符串):

grep -F "directory1
directory2
directory3" file.txt

如果你想使用更高级的正则表达式grep,请使用-E(使用扩展正则表达式):

grep -E 'directory[1-3]' file.txt

请注意,本示例中的某些grep(如GNU grep)不需要-E

最后,请注意您需要引用正则表达式。如果不这样做,您的shell可能会首先根据路径名扩展扩展正则表达式(例如,如果当前目录中有一个名为“directory1”的文件/目录,grep directory[1-3]将变为grep directory1你的shell)。

答案 1 :(得分:1)

你测试了哪个shell?

这里

grep directory[1-3]适用于bash,不适用于zsh

你可以引用"directory[1-3]"

或转义grep directory\[1-3\]

bash v4.2
zsh v5.0.2
grep (GNUgrep 2.14)

答案 2 :(得分:0)

它不是很漂亮,但你可以将grep连在一起:

grep -l "directory1" ./*.txt|xargs grep -l "directory2"|xargs grep -l "directory3"

限制输入以提高性能,例如使用find:

find ./*.txt -type f |xargs grep -l "directory1"|xargs grep -l "directory2"|xargs grep -l "directory3"