Shell编程(三)Shell特性

Shell编程(三)Shell特性

!$:显示上一条命令最后一个参数

Shell编程(三)Shell特性

Shell编程(三)Shell特性

$?: 上个命令的退出状态,或函数的返回值。

Shell编程(三)Shell特性

alias xxx="命令":给命令取别名 xxx

通过 vim ~/.bashrc 里编辑,可以来修改别名。

Shell编程(三)Shell特性

<, <<:重定向输出 、>, >>:重定向到文件

Shell编程(三)Shell特性

Shell编程(三)Shell特性

管道:|

Shell编程(三)Shell特性

命令排序

Shell编程(三)Shell特性

shell通配符

Shell编程(三)Shell特性

Shell编程(三)Shell特性

子shell:重新开一个shell执行。 (注:souch script.sh  或  .   script.sh 在当前shell里执行)

  •  /script.sh 
  • bash script.sh
  • (命令)

集合:{}

Shell编程(三)Shell特性

Shell编程(三)Shell特性

颜色输出

Shell编程(三)Shell特性

Shell编程(三)Shell特性

上一篇:复制虚拟机vmware centos搭建集群节点过程中网络配置eth0和eth1遇到的问题以及NAT模式下虚拟机静态IP配置方法


下一篇:Java的学习02