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.


Top document