Como você procura por um “$” usando o ag (silver-searcher)?

1

Estou tentando pesquisar strings parametrizadas no formato "$ {foo}".

ag "${" e ag "\${" não retornam nada. Como você escapar do "$"?

    
por jumpnett 26.07.2016 / 20:10

1 resposta

2

Isso foi respondido em sua página do github :

Since you're using double quotes, you're only escaping the dollar sign from the shell. By the time ag sees it, it is an unescaped dollar sign and therefore interpreted as end of line. Try single quotes or proper escaping:

$ ag '\$timeout'

$ ag "\\$timeout"

The reason grep is not affected, is because it uses basic regular expressions by default. With -E it behaves the same.

    
por 26.07.2016 / 20:21

Tags