(1)流程控制不可以为空: (2)if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi 条件用方括号,不是圆括号: (3)for var in item1 item2 ... itemN; do command1; command2… done; (4)case语句相当于switch,以case value in 分支用值加右括号表示,用两个分号::表示跳出分支,末尾必须以esac结束,是case…
一.if语句格式:支持if/elif/else形式,支持嵌套 1. command执行成功(及退出状态为0)时,执行command2 2. 当判断条件为test命令时,判断结果为true时,执行command2 if command; then command1else command2 fi if command then command fi 二. for语句格式 for var in list do command done 1.读取列表中得值 a.列表中的值默认以空格分隔, b.当值中包…
1. 更友好的显示当前挂载的文件系统 mount | column -t 这条命令适用于任何文件系统,column 用于把输出结果进行列表格式化操作,这里最主要的目的是让大家熟悉一下 columnt 的用法. 下面是单单使用 mount 命令的结果: $ mount /dev/root on / type ext3 (rw) /proc on /proc type proc (rw) /dev/mapper/lvmraid-home on /home type ext3 (rw,noatime)…
使用函数 #!/bin/bash # testing the script function myfun { echo "This is an example of a function" } count=1 while [ $count -le 5 ] do myfun count=$[ $count +1 ] done echo "This is the end of the loop" myfun echo "Now this is the end…
if语句 单分支 if [ 条件判断式 ]; then 程序 fi 或者 if [ 条件判断式 ] then 程序 fi 例子: 双分支 if [ 条件判断式 ] then 程序 else 程序 fi 多分支 if [ 条件判断1 ] then 程序1 elif [ 条件判断2 ] then 程序2 else 程序3 fi case语句 case $变量 in "值1" ) 程序1 ;; *) 默认程序 ;; esac for语句 语法1 for 变量 in 值1 值2 值3... …