美文网首页
3.Shell脚本语言-流程控制

3.Shell脚本语言-流程控制

作者: 你weixiao的时候很美 | 来源:发表于2019-01-28 21:20 被阅读2次
    1.if语句

    1.if语句

    if [条件]
    then 
         代码
    fi
    

    2.if else

    if [条件]
    then
       代码
    else
       代码
    fi
    
    1. if else-if else
    if [条件]
    then
        代码
    elif[条件]
    then
        代码
    else
        代码
    fi
    
    2.循环

    1.for循环

    for 变量名  in  item1,item2,item3
    do
         代码
    done
    
    1. while循环
    while (条件)
    do
        代码
    done
    
    1. until 循环
    until (条件)
    do
        代码
    done
    

    -当条件为false的时候,until执行循环。

    4.退出循环(和oc一样)
    使用break来退出循环。break 层数 可以退出多层循环,默认是1,表示退出当前循环。

    使用continue来退出本次循环执行,直接执行下一次循环。

    相关文章

      网友评论

          本文标题:3.Shell脚本语言-流程控制

          本文链接:https://www.haomeiwen.com/subject/sttzjqtx.html