[root@localhost ~]# bash lnmp_lamp.sh 1.[Install lamp] 2.[Install lnmp] 3.[exit] pls input the num you want: 1 Start installing lamp···pls wait··· LAMP is installed [root@localhost ~]# bash lnmp_lamp.sh 1.[Install lamp] 2.[Install lnmp] 3.[exit] pls input the num you want: 2 Start installing lnmp···pls wait··· LNMP is installed [root@localhost ~]# bash lnmp_lamp.sh 1.[Install lamp] 2.[Install lnmp] 3.[exit] pls input the num you want: 3 exit successfully. [root@localhost ~]# bash lnmp_lamp.sh 1.[Install lamp] 2.[Install lnmp] 3.[exit] pls input the num you want: dadda Usage:The num you input must be {1|2|3}
if语句开发
单分支if语句
语法
1 2 3 4 5 6 7 8
if <条件表达式> then 代码 fi ######简写######### if <条件表达式>;then 代码 fi
条件表达式可以为
[ ]、test语句、[[ ]]、(( ))
双分支if语句
语法
1 2 3 4 5 6 7 8 9
if <条件表达式> then if <条件表达式> then <命令> <> ... fi fi
if-else语句
语法
1 2 3 4 5 6
if <条件表达式> then <命令> else <命令> fi
多分支if语句
语法
1 2 3 4 5 6 7 8 9 10 11 12
if <条件表达式> then <命令> elif <条件表达式> then <命令> elif <条件表达式> then <命令> else <命令> fi