如何在shell脚本中使用elif里面的if语句?

时间:2015-11-09 11:26:11

标签: shell

如何在shell脚本中使用elif内的if语句?

if condition #if condn
then
   statments
elif
   statements
   if cond1
   then
   statement
   if
else
statemnet

1 个答案:

答案 0 :(得分:1)

elif需要一个命令,fi终止一个if命令

if command1
then
   statments
elif command2
then
   statements
   if command3
   then
       statements
   fi
else
    statements
fi