标签:style blog http color 使用 strong
对Shell命令行基本功能的理解有助于编写更好的Shell程序,在执行Shell命令时多个命令可以在一个命令行上运行,但此时要使用分号(;)分隔命令,例如:
[root@localhost root]# ls a* -l;free;df
长Shell命令行可以使用反斜线字符(\)在命令行上扩充,例如:
[root@localhost root]# echo "this is \
>long command"
This is long command
注意:
">"符号是自动产生的,而不是输入的。
学习Shell脚本编程(第1期)_Shell命令行书写规则,布布扣,bubuko.com
标签:style blog http color 使用 strong
原文地址:http://www.cnblogs.com/xia520pi/p/3817062.html