如何使用grep匹配双引号

时间:2016-08-17 12:24:57

标签: regex grep double-quotes

我以为我知道这个(或者至少知道如何谷歌)!

但在文本文件中搜索模式时,我无法弄清楚如何使用grep匹配双引号。我试图用反斜杠转义双引号符号,但它似乎不起作用。

>cat trial.txt  
"Bill" is here and "Ben" is there

> grep -iE "and \"ben\" is" trial.txt
Unmatched ".

如何让它发挥作用?

1 个答案:

答案 0 :(得分:4)

使用单引号来考虑每个字符的字面含义。

grep 'and "Ben" is' trial.txt