第三章、Linux if case判断语句
if 语句
if then fi
单层,单分支
if condition
then
sentence1
sentence2
...
fi
eg:
#! /bin/bash
a=3
b=4
if [ "${a}" -le "${b}" ] && [ "${a}" -ne 2 ]
then
echo "${a} is in the range"
fi
其他格式
if condition; then
sentence1
sentence2
...
fi
#! /bin/bash
a=3
b=4
if [ "${a}" -le "${b}" ] && [ "${a}" -ne 2 ];then echo "${a} is in the range";fi
if then else fi
if condition
then
sentence1
sentence2
...
else
sentence1
sentence2
fi
他也是有其他形式的缩写的,记得有些地方需要加上分号。
#! /bin/bash
filename='expr.sh'
if [ -e "${filename}" ]; then echo "${filename} exist"; else echo "${filename} not exist"; fi
if then elif then elif then fi
if condition
then
sentence1
sentence2
...
elif condition
then
sentence1
sentence2
elif condition
then
sentence1
sentence2
else # 这个 else 可以不要
sentence1
sentence2
fi
#! /bin/bash
a=4
if [ "${a}" -eq 1 ]
then echo "${a}=1"
elif [ "${a}" -eq 2 ]
then echo "${a}=2"
elif [ "${a}" -eq 3 ]
then echo "${a}=3"
else echo "${a} < 1 || ${a} > 3"
fi
case 语句
case "${变量名称}" in
value1)
sentence1
sentence2
...
;; # 类似于 C/C++中的 break
value2)
sentence1
sentence2
...
;; # 类似于 C/C++中的 break
*) # 类似于 C/C++ switch中的 default, * 是模式字符串
sentence1
sentence2
...
;; # 类似于 C/C++中的 break
esac
上文的value
是模式字符串,可以使用通配符,如果一个模式字符串中包含多个模式,需要用|
分隔开
实例:
#! /bin/bash
choice=$1
echo "choice = ${choice}"
case "${choice}" in
"-a"|"-b") echo "${choice} is -a or -b";;
-[cs]) echo "${choice} is -c or -s";;
*) echo "others"
esac
参考文献
欢迎报名Y总的Linux基础课
Linux 教程(第四版) - 孟庆昌