标签:参考 地方 date 反引号 style http html shel font
参考:http://wiki.jikexueyuan.com/project/shell-learning/command-substitution.html
命令替换是指 shell 可以先执行命令,将输出结果暂时保存,在适当的地方输出.
格式:`command`
即用反引号(esc下面那个键)将命令括起来,比如
DATE=`date`
echo "date is $DATE"
输出结果:date is Mon Aug 7 15:25:05 CST 2017
标签:参考 地方 date 反引号 style http html shel font
原文地址:http://www.cnblogs.com/i-love-kobe/p/7299517.html