In bash scripting what is the difference between $(command) and `command`. They both return the output of the command.
Let's say echo "There are $(wc -l < /etc/group) lines." and echo "There are `wc -l < /etc/group` lines.
They both print the same result.