将unix/linux命令的输出赋给一个变量,或者在字符串中引用一个命令的输出,命令由反引号引起来。
如:
set variable_name='command'
echo $variable
set now='date'
echo $now
echo "today is 'date'"