shell if else语句实例教程,shell if条件判断语句

发布时间:2020-09-03编辑:脚本学堂
本文介绍了shell if条件判断语句的用法,以及shell if语句中常用参数选项的例子,if 语句通过关系运算符判断表达式的真假来决定执行哪个分支。

if语句通过关系运算符判断表达式的真假来决定执行哪个分支。

shell有三种if...else语句:if...fi语句;if...else...fi语句;if...elif...else...fi语句。

shell条件判断语句之shell if语句
if 语句通过关系运算符判断表达式的真假来决定执行哪个分支。

shell 有三种 if ... else 语句:
if ... fi 语句;
if ... else ... fi 语句;
if ... elif ... else ... fi 语句。
1) if ... else 语句

if ... else 语句的语法:
if [ expression ]
then
Statement(s) to be executed if expression is true
fi 如果 expression 返回 true,then 后边的语句将会被执行;如果返回 false,不会执行任何语句。

最后必须以 fi 来结尾闭合 if,fi 就是 if 倒过来拼写,后面也会遇见。


注意:expression 和方括号([ ])之间必须有空格,否则会有语法错误。

例子:
 

#!/bin/sh

a=10
b=20

if [ $a == $b ]
then
echo "a is equal to b"
fi

if [ $a != $b ]
then
echo "a is not equal to b"
fi

运行结果:
a is not equal to b
2) if ... else ... fi
语句

if ... else ... fi

语句的语法:
 

if [ expression ]
then
Statement(s) to be executed if expression is true
else
Statement(s) to be executed if expression is not true
fi

如果 expression 返回 true,那么 then 后边的语句将会被执行;否则,执行 else 后边的语句。

例子:
 

#!/bin/sh

a=10
b=20

if [ $a == $b ]
then
echo "a is equal to b"
else
echo "a is not equal to b"
fi

执行结果:
a is not equal to b

3) if ... elif ... fi 语句

if ... elif ... fi

语句可以对多个条件进行判断,语法为:
 

if [ expression 1 ]
then
Statement(s) to be executed if expression 1 is true
elif [ expression 2 ]
then
Statement(s) to be executed if expression 2 is true
elif [ expression 3 ]
then
Statement(s) to be executed if expression 3 is true
else
Statement(s) to be executed if no expression is true
fi

哪一个 expression 的值为 true,就执行哪个 expression 后面的语句;
如果都为 false,那么不执行任何语句。

例子:
 

#!/bin/sh

a=10
b=20

if [ $a == $b ]
then
echo "a is equal to b"
elif [ $a -gt $b ]
then
echo "a is greater than b"
elif [ $a -lt $b ]
then
echo "a is less than b"
else
echo "None of the condition met"
fi

运行结果:
a is less than b
if ... else 语句也可以写成一行,以命令的方式来运行,像这样:
if test $[2*3] -eq $[1+5]; then echo 'The two numbers are equal!'; fi;
if ... else

语句也经常与 test 命令结合使用,如下所示:
 

num1=$[2*3]
num2=$[1+5]
if test $[num1] -eq $[num2]
then
echo 'The two numbers are equal!'
else
echo 'The two numbers are not equal!'
fi

输出:
The two numbers are equal! test 命令用于检查某个条件是否成立,与方括号([ ])类似。

linux Shell——-if -eq,if -ne,if -gt[笔记]
-eq  //等于
-ne  //不等于
-gt  //大于
-lt  //小于
ge   //大于等于
le   //小于等于

shell if语句条件判断

语句格式:
 

if list then
do something here
elif list then
do another thing here
else
do something else here
fi   
 

例子:
 

#!/bin/sh
SYSTEM=`uname -s` #获取操作系统类型,我本地是linux
if [ $SYSTEM = "Linux" ] ; then  #如果是linux的话打印linux字符串
echo "Linux"
elif [ $SYSTEM = "FreeBSD" ] ; then  
echo "FreeBSD"
elif [ $SYSTEM = "Solaris" ] ; then
echo "Solaris"
else
echo "What?"
fi     #ifend
 

注意,[]里面的条件判断。

1、字符串判断
 

str1 = str2当两个串有相同内容、长度时为真
str1 != str2  当串str1和str2不等时为真
-n str1  当串的长度大于0时为真(串非空)
-z str1  当串的长度为0时为真(空串)
str1   当串str1为非空时为真

2、数字的判断
 

int1 -eq int2两数相等为真
int1 -ne int2两数不等为真
int1 -gt int2int1大于int2为真
int1 -ge int2int1大于等于int2为真
int1 -lt int2int1小于int2为真
int1 -le int2int1小于等于int2为真

3、文件的判断
 

-r file 用户可读为真
-w file 用户可写为真
-x file 用户可执行为真
-f file 文件为正规文件为真
-d file 文件为目录为真
-c file 文件为字符特殊文件为真
-b file 文件为块特殊文件为真
-s file 文件大小非0时为真
-t file 当文件描述符(默认为1)指定的设备为终端时为真
 

3 复杂逻辑判断
-a   与
-o  或
!非
结尾