문제

My search term is

ack @RequestMapping("/example_path")

and bash is complaining with

-bash: syntax error near unexpected token `('

How can I search for the above text from bash the easiest way. All my attempts to escape the characters have not brought results.

도움이 되었습니까?

해결책

Try this.

ack '@RequestMapping\("/example_path"\)'

Or, as Andy suggested:

ack -Q '@RequestMapping("/example_path")'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top