In sh/ksh/bash to store the output of a command as a variable you can do either
MY_VAR=$(command)
#or you can do
MY_VAR=`command`
What's the difference if any between the two methods?
|
|
The backticks/gravemarks have been deprecated in favor of See the POSIX spec for detailed information on the various differences. |
|||
|
|
|
They behave the same. The difference is syntactical: it's easier to nest
vs.
|
|||
|
|
|
When the older back-tick form is used, backslash retains its literal meaning except when followed by $, `, or \. The first back-tick not preceded by a backslash terminates the command substitution. When using the newer Both forms can be nested, but the back-tick variety requires the following form.
As opposed to:
|
||||
|
There is little difference, except for what unescaped characters you can use inside of the command. You can even put one of them inside the other for a more complicated two-level-deep command substitution. There is a slightly different interpretation of the backslash character/operator. Among other things, when nesting `...` substitution commands, you must escape the inner ` characters with \, whereas with $() substition it understands the nesting automatically. |
|||||||
|