I have seen people using two ways to execute shell commands. I use python binary as an example below:
$./format1 `python -c 'print "AAA"'`
$./format1 $(python -c 'print "AAA"')
What is the name of these methods? What are the differences if there is any?
