Shell break和continue命令

來源:互聯網
上載者:User

標籤:style   blog   color   使用   ar   for   sp   div   on   

在迴圈過程中,有時候需要在未達到迴圈結束條件時強制跳出迴圈,像大多數程式設計語言一樣,Shell也使用 break 和 continue 來跳出迴圈。

break命令

break命令允許跳出所有迴圈(終止執行後面的所有迴圈)。

下面的例子中,指令碼進入死迴圈直至使用者輸入數字大於5。要跳出這個迴圈,返回到shell提示符下,就要使用break命令。

#!/bin/bashwhile :do    echo -n "Input a number between 1 to 5: "    read aNum    case $aNum in        1|2|3|4|5) echo "Your number is $aNum!"        ;;        *) echo "You do not select a number betewwn 1 to 5,game is over!"            break;        ;;    esacdone~                                                              ~          

在嵌套迴圈中,break 命令後面還可以跟一個整數,表示跳出第幾層迴圈。例如:

break n

表示跳出第 n 層迴圈。

下面是一個嵌套迴圈的例子,如果 var1 等於 2,並且 var2 等於 0,就跳出迴圈:

#!/bin/bashfor var1 in 1 2 3do   for var2 in 0 5   do       if [ $var1 -eq 2 -a $var2 -eq 0 ]       then           break 1       else           echo "$var1 $var2"       fi    donedone~     

運行結果:

1 01 53 03 5
continue命令

continue命令與break命令類似,只有一點差別,它不會跳出所有迴圈,僅僅跳出當前迴圈。

對上面的例子進行修改:

#!/bin/bashwhile :do    echo -n "Input a number between 1 to 5"    read aNum    case $aNum in        1|2|3|4|5) echo "Your number is $aNum!"        ;;        *) echo "You do not select a number between 1 to 5!"           continue           echo "Game is over!"         ;;    esacdone

運行代碼發現,當輸入大於5的數字時,該例中的迴圈不會結束,語句

echo "Game is over!"

永遠不會被執行。

同樣,continue 後面也可以跟一個數字,表示跳出第幾層迴圈。

再看一個 continue 的例子:

#!/bin/bashNUMS="1 2 3 4 5 6 7"for NUM in $NUMSdo    Q=$(expr $NUM % 2)    if [ $Q -eq 0 ]    then       echo "Number is an even number!!"       continue    fi    echo "Found odd number"done

運行結果:

Found odd numberNumber is an even number!!Found odd numberNumber is an even number!!Found odd numberNumber is an even number!!Found odd number

 

Shell break和continue命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.