开发者

Escaping a parenthesis in grep/ack

开发者 https://www.devze.com 2023-02-05 19:37 出处:网络
I want to look for the string \"methodname(\", but I am unable to escape the \"(\". How can I get grep methodname( *

I want to look for the string "methodname(", but I am unable to escape the "(". How can I get

grep methodname( *

or

开发者_如何转开发ack-grep methodname( *

to work?


There's two things interpreting the (: the shell, and ack-grep.

You can use '', "", or \ to escape the ( from the shell, e.g.

grep 'methodname(' *
grep "methodname(" *
grep methodname\( *

grep uses a basic regular expression language by default, so ( isn't special. (It would be if you used egrep or grep -E or grep -P.)

On the other hand, ack-grep takes Perl regular expressions as input, in which ( is also special, so you'll have to escape that too.

ack-grep 'methodname\(' *
ack-grep "methodname\\(" *
ack-grep methodname\\\( *
ack-grep 'methodname[(]' *
ack-grep "methodname[(]" *
ack-grep methodname\[\(\] *


Try adding a \ before the (.

Small demo:

$ cat file
bar
methodname(
foo
$ grep -n methodname\( file
2:methodname(
$ 

Enclosing the pattern in single or double quotes also works:

$ grep -n 'methodname(' file
2:methodname(
$ grep -n "methodname(" file
2:methodname(
$ 
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号