From the Bash FAQ:
Backslashes () inside backticks are handled in a non-obvious manner:
$ echo "`echo \a`" "$(echo \a)"
a a
$ echo "`echo \\a`" "$(echo \\a)"
a \a
But the FAQ does not break down the parsing rules that lead to this difference. The only relevant quote from man bash
I found was:
When the old-style backquote form of substitution is used, backslash retains its literal meaning except when followed by $, `, or .
The "$(echo \a)"
and "$(echo \\a)"
cases are easy enough: Backslash, the escape character, is escaping itself into a literal backlash. Thus every instance of \
becomes
in the output. But I'm struggling to understand the analogous logic for the backtick cases. What is the underlying rule and how does the observed output follow from it?
Finally, a related question... If you don't quote the backticks, you get a "no match" error:
$ echo `echo \\a`
-bash: no match: a
What's happening in this case?
update
Re: my main question, I have a theory for a set of rules that explains all the behavior, but still don't see how it follows from any of the documented rules in bash. Here are my proposed rules....
Inside backticks, a backslash in front of a character simply returns that character. Ie, a single backslash has no effect. And this is true for all characters, except backlash itself and backticks. In the case of backslash itself, \
becomes an escaping backslash. It will escape its next character.
Let's see how this plays out in an example:
a=xx
echo "`echo $a`" # prints the value of $a
echo "`echo $a`" # single backslash has no effect: equivalent to above
echo "`echo \$a`" # escaping backslash make $ literal
prints:
xx
xx
$a
Try it online!
Let's analyze the original examples from this perspective:
echo "`echo \a`"
Here the \
produces an escaping backslash, but when we "escape" a
we just get back a
, so it prints a
.
echo "`echo \\a`"
Here the first pair \
produces an escaping backslash which is applied to
, producing a literal backslash. That is, the first 3 \
become a single literal
in the output. The remaining a
just produces a
. Final result is a
.
See Question&Answers more detail:
os