Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Shell removes single quotes inside double quotes? first time I see it! :) – Diego Sevilla Aug 31 '11 at 8:42
He has single quotes inside double quotes inside single quotes: the regex begins with '" not just " – Matteo Aug 31 '11 at 8:43
@Matteo, yes, hard to see at first sight :) – Diego Sevilla Aug 31 '11 at 8:46

5 Answers

up vote 7 down vote accepted
grep -i "something ~\* '[[:alnum:]]*'" /var/log/syslog

works for me.

  • escape the first * to match a literal * instead of making it the zero-or-more-matches character:
    ~* would match zero or more occurrences of ~ while
    ~\* matches the expression ~* after something
  • use double brackets around :alnum: (see example here)
  • use a * after [[:alnum::]] to match not only one character between your single quotes but several of them
  • the single quotes don't have to be escaped at all because they are contained in an expression that is limited by double quotes.
share|improve this answer
this way it worked! thanks! – Ian Aug 31 '11 at 8:53

If you do need to look for quotes in quotes in quotes, there are ugly constructs that will do it.

echo 'And I said, "he said WHAT?"'

works as expected, but for another level of nesting, the following doesn't work as expected:

echo 'She said, "And I said, \'he said WHAT?\'"'

Instead, you need to escape the inner single quotes outside the single-quoted string:

echo 'She said, "And I said, '\''he said WHAT?'\''"'

Or, if you prefer:

echo 'She said, "And I said, '"'"'he said WHAT?'"'"'"'

It ain't pretty, but it works. :)

Of course, all this is moot if you put things in variables.

[ghoti@pc ~]$ i_said="he said WHAT?"
[ghoti@pc ~]$ she_said="And I said, '$i_said'"
[ghoti@pc ~]$ printf 'She said: "%s"\n' "$she_said"
She said: "And I said, 'he said WHAT?'"
[ghoti@pc ~]$ 

:-)

share|improve this answer
1  
Thanks for the brief overview, I just +1 to raise your score to 10k :) – Dag Nov 28 '12 at 11:28

It seems as per your expression, that you are using first ', then ". If you want to escape the single quotes, you can either use ' and escape them, or use double quotes. Also, as Matteo comments, character classes have double square brackets Either:

grep -i "something \~\* '[[:alnum:]]+'" /var/log/syslog

or

grep -i 'something ~* \'[[:alnum:]]+\'' /var/log/syslog
share|improve this answer
  • character classes are specified with [[:alnum:]] (two brackets)
  • [[:alnum:]] is matching only one character. To match zero or more characters [[:alnum:]]*
  • you can just use " " to quote the regex:

    grep -i "something ~\* '[[:alnum:]]*'" /var/log/syslog
    

Matteo

share|improve this answer
* has to be escaped too I just learned.. – Ian Aug 31 '11 at 8:57
@Ian: not if in quotes – Matteo Aug 31 '11 at 9:00
@Matteo - sure it does, if it's intended to be taken literally. ~* means "zero or more '~' characters". – Graham Mar 15 '12 at 4:26
@Graham, thank for the correction. I missed that he was looking for a literal '*'. – Matteo Mar 15 '12 at 6:04

You can escape the single quotes the same way you'd escape anything else, using a backslash:

grep -i '"something ~* \'[:alnum:]\'"' /var/log/syslog
                       ^          ^
share|improve this answer
1  
That's not working for me. When I type grep -i '"something ~* \'[:alnum:]\'"' /var/log/syslog in the shell i get a new line > and its waiting till I type something – Ian Aug 31 '11 at 8:45
@ian, it doesn't work for me either. I'm using OS X, which comes with BSD grep. I have a feeling that this is a difference between GNU grep and BSD, but I haven't tested this idea out. – Eric Hu Mar 13 '12 at 0:20
It's no wonder this isn't working. This answer is incorrect. Single quotes cannot be escaped within single quotes in bash. For a good tutorial on how to use quotes, check Greg's wiki. – ghoti Oct 13 '12 at 1:18
Single quotes can be escaped like '\\'', so grep -i '"something ~* '\\''[:alnum:]'\\''"' /var/log/syslog should probably work – Koen. Apr 20 at 16:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.