1、if else判断
if 语句语法格式:如果条件成立,即condition执行结果为的状态0,真,执行then
if condition then command1 command2 ... commandN fi
写成一行(适用于终端命令提示符):当多行命令写在一行的时候,要用分号隔开
if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi
末尾的fi就是if倒过来拼写,后面还会遇到类似的。
对上面的示例说明:if里面关系的是执行命令后的执行状态,如果为0,表示比较命令执行成功。如果结果为非0,表示比较命令执行失败。if只根据这个结果来进行判断。
[root@localhost ~]#[ $(ps -ef | grep -c "ssh") -gt 1 ] [root@localhost ~]#echo $? 0
–
if else 语法格式:
if condition then command1 command2 ... commandN else command fi
–
if else-if else 语法格式:
if condition1 then command1 elif condition2 then command2 else commandN fi
以下实例判断两个变量是否相等:
[root@localhost ~]#cat test.sh #!/bin/bash a=10 b=20 if [ $a -eq $b ];then echo "a = b" elif [ $a -lt $b ];then echo "a < b" elif [ $a -gt $b ]; then echo "a > b" else "error" fi [root@localhost ~]#bash test.sh a < b
2、for循环
与其他编程语言类似,Shell支持for循环。
for循环一般格式为:先将item1赋值给var,执行下面的所有命令,然后将item2赋值给var执行下面的命令,,,
for var in item1 item2 ... itemN do command1 command2 ... commandN done
写成一行:
for var in item1 item2 ... itemN; do command1; command2… done;
当变量值在列表里,for循环即执行一次所有命令,使用变量名获取列表中的当前取值。命令可为任何有效的shell命令和语句。in列表可以包含替换、字符串和文件名。
in列表是可选的,如果不用它,for循环使用命令行的位置参数。
例如,顺序输出当前列表中的数字:
[root@localhost ~]#cat test.sh #!/bin/bash for i in 1 2 3 4 5;do echo "this is $i" done [root@localhost ~]#bash test.sh this is 1 this is 2 this is 3 this is 4 this is 5
in里面可以跟任何shell命令执行结果,将当前目录下的文件名作为for循环的参数,进行传递执行命令
[root@localhost ~]#ls lnmpr-master lnmpr-v0.03 test.sh [root@localhost ~]#cat test.sh #!/bin/bash for i in $(ls ./);do echo "this is $i" done [root@localhost ~]#bash test.sh this is lnmpr-master this is lnmpr-v0.03 this is test.sh
3、while循环
while循环用于不断执行一系列命令,也用于从输入文件中读取数据;命令通常为测试条件。其格式为:
while condition do command done
以下是一个基本的while循环,测试条件是:如果int小于等于5,那么条件返回真。int从0开始,每次循环处理时,int加1。运行上述脚本,返回数字0到5,然后终止。
[root@localhost ~]#cat test.sh #!/bin/bash int=0 while [ $int -le 5 ];do echo $int let int++ done [root@localhost ~]#bash test.sh 0 1 2 3 4 5
使用中使用了 Bash let 命令,它用于执行一个或多个表达式,变量计算中不需要加上 $ 来表示变量
4、无限循环
无限循环语法格式:
while : do command done
或者
while true do command done
或者
for (( ; ; ))
5、until 循环
until循环执行一系列命令直至条件为真时停止。
until循环与while循环在处理方式上刚好相反。
一般while循环优于until循环,但在某些时候—也只是极少数情况下,until循环更加有用。
until 语法格式:
until condition do command done
条件可为任意测试条件,测试发生在循环末尾,因此循环至少执行一次—请注意这一点。
6、case
Shell case语句为多选择语句。可以用case语句匹配一个值与一个模式,如果匹配成功,执行相匹配的命令。case语句格式如下:
case 值 in 模式1) command1 command2 ... commandN ;; 模式2) command1 command2 ... commandN ;; esac
case工作方式如上所示。取值后面必须为单词in,每一模式必须以右括号结束。取值可以为变量或常数。匹配发现取值符合某一模式后,其间所有命令开始执行直至 ;;,;;表示break。
取值将检测匹配的每一个模式。一旦模式匹配,则执行完匹配模式相应命令后不再继续其他模式。如果无一匹配模式,使用星号 * 捕获该值,再执行后面的命令。
下面的示例中:3|4)表示,当$int为3或者4的时候,都执行这个条件下的命令
[root@localhost ~]#cat test.sh #!/bin/bash int=4 case $int in 1) echo 1 ;; 2) echo 2 ;; 3|4) echo 3 4 ;; *) echo error ;; esac [root@localhost ~]#bash test.sh 3 4
7、跳出循环
在循环过程中,有时候需要在未达到循环结束条件时强制跳出循环,Shell使用两个命令来实现该功能:break和continue。和c语言的功能是一样的
break命令
break后面不跟数字的话,表示跳出当前循环,
下面的例子中,脚本进入死循环直至用户输入数字大于5。要跳出这个循环,返回到shell提示符下,需要使用break命令。
#!/bin/bash while : do echo -n "输入 1 到 5 之间的数字:" read aNum case $aNum in 1|2|3|4|5) echo "你输入的数字为 $aNum!" ;; *) echo "你输入的数字不是 1 到 5 之间的! 游戏结束" break ;; esac done
执行以上代码,输出结果为:
输入 1 到 5 之间的数字:3
你输入的数字为 3!
输入 1 到 5 之间的数字:7
你输入的数字不是 1 到 5 之间的! 游戏结束
continue命令
continue命令与break命令类似,只有一点差别,它仅仅跳出当前循环,继续下次循环
对上面的例子进行修改:
#!/bin/bash while : do echo -n "输入 1 到 5 之间的数字: " read aNum case $aNum in 1|2|3|4|5) echo "你输入的数字为 $aNum!" ;; *) echo "你输入的数字不是 1 到 5 之间的!" continue echo "游戏结束" ;; esac done
运行代码发现,当输入大于5的数字时,该例中的循环不会结束,语句 echo "Game is over!" 永远不会被执行。
–
–
–
评论前必须登录!
注册