首页 > 代码库 > bash中if语句

bash中if语句

if语法格式
if 判断条件; then
    statement
elif 判断条件; then
    statement
elif 判断条件; then
    statement
else    
    statement
fi

本文出自 “www.aboboo520.com” 博客,请务必保留此出处http://aboboo520.blog.51cto.com/11330424/1883219

bash中if语句