-1

我想要 Egrep 这个,来自一个文件:

egrep "check (hello)"

但 Egrep 不工作,因为“()”。如何进行?

4

2 回答 2

1

你需要逃避它们:

egrep "check \(hello\)"
于 2013-03-10T19:52:20.237 回答
1

如果您不希望字符具有特殊含义,请使用fgrep, not 。egrep

于 2013-03-10T19:52:45.940 回答