Command Substitution
Source: http://mywiki.wooledge.org/CommandSubstitution
Inserts the output of one command into another command.
echo $(pwd)
Example Output: /home/user
NB: Older shells seemed to have only supported ` but $()
is preferred.