echo arg您可以使用echo实现更复杂的输出格式控制。
echo "\"It is a test\""结果将是:
"It is a test"双引号也可以省略。
name="OK" echo "$name It is a test"结果将是:
OK It is a test同样双引号也可以省略。
mouth=8 echo "${mouth}-1-2009"结果将是:
8-1-2009显示换行
echo "OK!\n" echo "It is a test"输出:
OK! It is a test显示不换行
echo "OK!\c" echo "It is a test"输出:
OK!It si a test显示结果重定向至文件
echo "It is a test" > myfile原样输出字符串
echo '$name\"'显示命令执行结果
echo `date`结果将显示当前日期
原文地址:http://blog.csdn.net/wu20093346/article/details/47188391