Back-quotes
Back-quotes capture output of command as shell values.
For ` Command` , the shell:
- performs $-substitution (as for double-quotes)
- executes the resulting command and arguments
- captures the standard output from the command
- converts it to a single string
- uses this string as the value of the expression
|