您可以使用echo实现更复杂的输出格式控制。 显示转义字符
- echo arg
结果将是:
- 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`
从上面可看出,双引号可有可无,单引号主要用在原样输出中。