如何在shell脚本中使用elif内的if语句?
if condition #if condn
then
statments
elif
statements
if cond1
then
statement
if
else
statemnet
答案 0 :(得分:1)
elif
需要一个命令,fi
终止一个if命令
if command1
then
statments
elif command2
then
statements
if command3
then
statements
fi
else
statements
fi