美文网首页
<三> shell流程控制

<三> shell流程控制

作者: 无量散人 | 来源:发表于2019-01-03 15:05 被阅读6次

    一、if-elseif-else

    1、if else 语法格式:

    if condition1
    then
         command1
    elif condition2 
    then 
        command2
    else
        commandN
    fi
    

    2、实例

    a=10
    b=20
    if [ $a == $b ]
    then
       echo "a 等于 b"
    elif [ $a -gt $b ]
    then
       echo "a 大于 b"
    elif [ $a -lt $b ]
    then
       echo "a 小于 b"
    else
       echo "没有符合的条件"
    fi
    

    打印结果

    a 小于 b


    二、for循环

    1、for循环语法

    for var in item1 item2 ... itemN
    do
        command1
        command2
        ...
        commandN
    done
    

    2、实例

    for loop in 1 2 3 4 5
    do
        echo "The value is: $loop"
    done
    

    打印结果

    The value is: 1
    The value is: 2
    The value is: 3
    The value is: 4
    The value is: 5

    for str in 'This is a string'
    do
        echo $str
    done
    

    打印结果

    This is a string


    三、while语句

    1、语法

    while condition
    do
        command
    done
    

    2、实例

    #!/bin/bash
    int=1
    while(( $int<=5 ))
    do
       echo $int
       let "int++"
    done
    

    打印结果

    1
    2
    3
    4
    5

    使用中使用了 Bash let 命令,它用于执行一个或多个表达式,变量计算中不需要加上 $ 来表示变量

    无限循环

    while :
    do
        command
    done
    

    或者

    while true
    do
        command
    done
    

    或者

    for (( ; ; ))
    


    四、until 循环

    until 循环执行一系列命令直至条件为 true 时停止。
    until 循环与 while 循环在处理方式上刚好相反。
    一般 while 循环优于 until 循环,但在某些时候—也只是极少数情况下,until 循环更加有用。

    1、语法

    until condition
    do
        command
    done
    

    condition 一般为条件表达式,如果返回值为 false,则继续执行循环体内的语句,否则跳出循环。

    2、实例

    #!/bin/bash
    
    a=0
    
    until [ ! $a -lt 10 ]
    do
       echo $a
       a=`expr $a + 1`
    done
    

    输出结果

    0
    1
    2
    3
    4
    5
    6
    7
    8
    9


    五、case语句

    Shell case语句为多选择语句。可以用case语句匹配一个值与一个模式,如果匹配成功,执行相匹配的命令。类似于Java的switch语句:

    1、语法

    case 值 in
    模式1)
        command1
        command2
        ...
        commandN
        ;;
    模式2)
        command1
        command2
        ...
        commandN
        ;;
    esac
    

    case工作方式如上所示。取值后面必须为单词in,每一模式必须以右括号结束。取值可以为变量或常数。匹配发现取值符合某一模式后,其间所有命令开始执行直至 ;;。
    取值将检测匹配的每一个模式。一旦模式匹配,则执行完匹配模式相应命令后不再继续其他模式。如果无一匹配模式,使用星号 * 捕获该值,再执行后面的命令。

    2、实例

    echo '输入 1 到 4 之间的数字:'
    echo '你输入的数字为:'
    read aNum
    case $aNum in
        1)  echo '你选择了 1'
        ;;
        2)  echo '你选择了 2'
        ;;
        3)  echo '你选择了 3'
        ;;
        4)  echo '你选择了 4'
        ;;
        *)  echo '你没有输入 1 到 4 之间的数字'
        ;;
    esac
    


    六、break和continue

    1、实例

    #!/bin/bash
    while :
    do
        echo -n "输入 1 到 5 之间的数字:"
        read aNum
        case $aNum in
            1|2|3|4|5) echo "你输入的数字为 $aNum!"
            ;;
            *) echo "你输入的数字不是 1 到 5 之间的! 游戏结束"
                break
            ;;
        esac
    done
    

    输入和输出打印

    输入 1 到 5 之间的数字:3
    你输入的数字为 3!
    输入 1 到 5 之间的数字:7
    你输入的数字不是 1 到 5 之间的! 游戏结束

    #!/bin/bash
    while :
    do
        echo -n "输入 1 到 5 之间的数字: "
        read aNum
        case $aNum in
            1|2|3|4|5) echo "你输入的数字为 $aNum!"
            ;;
            *) echo "你输入的数字不是 1 到 5 之间的!"
                continue
                echo "游戏结束"
            ;;
        esac
    done
    

    相关文章

      网友评论

          本文标题:<三> shell流程控制

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