The question is as simple as stated in the title: What\'s the difference between the following two expressions?
$(...)
`...`
For example, a
The result is the same, but the newer $() syntax is far clearer and easier to read. At least doubly so when trying to nest. Nesting is not easy with the old syntax, but works fine with the new.
Compare:
$ echo $(ls $(pwd))
versus:
$ echo `ls \`pwd\``
You need to escape the embedded backticks, so it's quite a lot more complicated to both type and read.
According to this page, there is at least one minor difference in how they treat embedded double backslashes.