标准格式,注意,不要少了空格~
if空格[空格"xx"空格=空格"xx"空格];空格then
echo "if"
elif空格[空格"xx"空格=空格"xx"空格];空格then
echo "elseif"
else
echo "else"
fi
空格转为真实空格的代码:
if [ "xx" = "xx" ]; then
echo "if"
elif [ "xx" = "xx" ]; then
echo "elseif"
else
echo "else"
fi
判定参数方面可以参考:
shell中if判定的常用逻辑表示方式
shell中if判定的常用逻辑表示方式
相关参考网站:
http://blog.csdn.net/caoyongjunjava/article/details/44560849
http://www.jb51.net/article/34332.htm
未经允许不得转载:阿藏博客 » shell脚本if elseif else整理