Shell命令行的书写规则 对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命令行书写规则 正文对Shell命令行基本功能的理解有助于编写更好的Shell程序,在执行Shell命令时多个命令可以在一个命令行上运行,但此时要使用分号(;)分隔命令,例如: root@ubuntu:~# ls a* -l;free;df 长Shell命令行可以使用反斜线字符(\)在命令行上扩充,例如: root@ubuntu:~# echo "this is \ > long command" this is long command 注意:“&g…