regex - grep and return line continuations? -


i want grep return results through line continuations, ie input file like:

$ cat input.txt abba \   jjjj \   nnnn  $ grep "abba ?" input.txt abba jjjj nnnn 

i can't seem working.

maybe looking search in file after replacing slashes newlines...

tr '\\' '\n' < input.txt | grep 

Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -