Question

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.

Était-ce utile?

La solution

Try this.

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

Or, as Andy suggested:

ack -Q '@RequestMapping("/example_path")'
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top