Shell编程-流程控制-if、case语句

Shell编程-流程控制-if、case语句

if语句
单分支if条件语句
1)if [ 条件判断式 ];then
程序
fi
2)if [ 条件判断式 ]
   then
       程序
   fi 
其它:条件判断式 两边有空格。
双分支if条件语句
if [ 条件判断式 ]
   then
       条件成立时,执行的程序。
   else
       条件不成立时,执行的另一个程序。
fi 
多分支if条件语句
if [ 条件判断式1 ]
   then
       条件1成立时,执行的程序。
elif [ 条件判断式2 ]
       then
       条件2成立时,执行的程序。
else
       当所有条件都不成立时,最后执行此程序。
fi 

case语句
多分支语句,只能判断一种条件关系。
例子:
#!/bin bash
author: hhhh
read  -p "please choose yes or no: " ch
case $ch in
        "yes")
               echo "your choose is yes"
               ;;
        "no")
               echo "your choose is no"
               ;;
         *)
               echo "your choose is error"
               ;;
esac

你可能感兴趣的:(Linux)