up vote 20 down vote favorite
7
share [g+] share [fb]

There is an example of "how to do this" on Stuart Colville's blog, but the example used there and the explanation of why it works is unclear.

To keep things simple:

Let's say you have a bash alias like

alias rxvt='urxvt'

which works fine.

alias rxvt='urxvt -fg '#111111' -bg '#111111''

won't work, and neither will:

alias rxvt='urxvt -fg \'#111111\' -bg \'#111111\''

So how do you end up matching up opening and closing quotes inside a string once you have escaped quotes?

alias rxvt='urxvt -fg'\''#111111'\'' -bg '\'#111111'\''

seems ungainly although it would represent the same string if you're allowed to concatenate them like that.

link|improve this question

78% accept rate
feedback

5 Answers

up vote 28 down vote accepted

And if you really want to use single quotes in the outermost layer, remember that you can glue both kinds of quotation. Example:

 alias rxvt='urxvt -fg '"'"'#111111'"'"' -bg '"'"'#111111'"'"
                       12345

Explanation:

(1) End first quotation which uses single quotes.

(2) Start second quotation, using double-quotes.

(3) Quoted character.

(4) End second quotation, using double-quotes.

(5) Start third quotation, using single quotes.

If you do not place whitespace between (1) and (2), or between (4) and (5), shell will interpret that as one long word.

link|improve this answer
+1 for the One True Solution. Need I add that you should write code to do this kind of quoting? – Norman Ramsey Aug 9 '09 at 1:34
Wow. That's hard to keep straight even with a clear explanation! – Clinton Blackmore Apr 28 '10 at 0:08
alias splitpath='echo $PATH | awk -F : '"'"'{print "PATH is set to"} {for (i=1;i<=NF;i++) {print "["i"]",$i}}'"'" It works when there are both single quotes and double quotes in the alias string! – Uphill_ What '1 Jun 1 '11 at 10:09
Unfortunately, this didn't help in my .bash_profile script – Bohemian Jul 8 '11 at 5:01
@Bohemian: sorry to hear that. – liori Jul 8 '11 at 12:28
feedback

I don't see the entry on his blog (link pls?) but according to the gnu reference manual

Enclosing characters in single quotes (‘'’) preserves the literal value of each character within the quotes. A single quote may not occur between single quotes, even when preceded by a backslash.

so bash won't understand

alias x='y \'z '

however, you can do this if you surround with double quotes:

alias x="echo \'y "
> x
> 'y
link|improve this answer
feedback

I'm not specifically addressing the quoting issue because, well, sometimes, it's just reasonable to consider an alternative approach.

rxvt() { urxvt -fg "#${1:-000000}" -bg "#${2:-FFFFFF}"; }

which you can then call as:

rxvt 123456 654321

the idea being that you can now alias this without concern for quotes:

alias rxvt='rxvt 123456 654321'

or, if you need to include the # in all calls for some reason:

rxvt() { urxvt -fg "${1:-#000000}" -bg "${2:-#FFFFFF}"; }

which you can then call as:

rxvt '#123456' '#654321'

then, of course, an alias is:

alias rxvt="rxvt '#123456' #654321'"

(oops, i guess i kind of did address the quoting :)

link|improve this answer
I was trying to put something within single quotes that was in double quotes which were, in turn, in single quotes. Yikes. Thank you for your answer of "try a different approach". That made the difference. – Clinton Blackmore Apr 28 '10 at 0:09
feedback

I always just replace each imbedded single quote with the sequence: '\'' (that is: quote backslash quote quote) which closes the string, appends an escaped single quote and reopens the string. I often whip up a "quotify" function in my Perl scripts to do this for me. The steps would be:

s/'/'\\''/g    # Handle each imbedded quote
$_ = qq['$_']; # Surround result with single quotes.

This pretty much takes care of all cases.

Life gets more fun when you introduce "eval" into your shell-scripts: then you essentially have to re-quotify everything again!

link|improve this answer
But this isn't perl. And as Steve B pointed out above, with his reference to the "gnu reference manual", you can't escape quotes in bash within the same type of quote. And in fact, don't need to escape them within alternate quotes, e.g. "'" is a valid single-quote string and '"' is a valid double-quote string without requiring any escaping. – nicerobot Aug 22 '09 at 5:36
feedback

I can confirm that using '\'' for a single quote inside a single-quoted string does work in Bash, and it can be explained in the same way as the "gluing" argument from earlier in the thread. Suppose we have a quoted string: 'A '\''B'\'' C' (all quotes here are single quotes). If it is passed to echo, it prints the following: A 'B' C. In each '\'' the first quote closes the current single-quoted string, the following \' glues a single quote to the previous string (\' is a way to specify a single quote without starting a quoted string), and the last quote opens another single-quoted string.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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