hide random home http://www.fmi.uni-passau.de/archive/doc/unix/unixhelp/Unixhelp/commanz_cmd_sub.html (Einblicke ins Internet, 10/1995)

Command substitution

Command substitution

To include the output from one command within the command line for another command, enclose the command whose output is to be included within `backquotes`. For example:

   echo The date today is `date +%d/%m/%y`
   The date today is 22/03/93

The output from the command date +%d/%m/%y is substituted at the appropriate location within a command line that uses the echo command.