I want to search with grep for a string that looks like this:
something ~* 'bla'
I tried this, but the shell removes the single quotes argh..
grep -i '"something ~* '[:alnum:]'"' /var/log/syslog
What would be the correct search?
works for me.
|
||||
|
|
|
If you do need to look for quotes in quotes in quotes, there are ugly constructs that will do it.
works as expected, but for another level of nesting, the following doesn't work as expected:
Instead, you need to escape the inner single quotes outside the single-quoted string:
Or, if you prefer:
It ain't pretty, but it works. :) Of course, all this is moot if you put things in variables.
:-) |
|||||
|
|
It seems as per your expression, that you are using first
or
|
|||
|
|
Matteo |
||||
|
You can escape the single quotes the same way you'd escape anything else, using a backslash:
|
|||||||||||
|
'"not just"– Matteo Aug 31 '11 at 8:43