Shell 循環類型

循環是一個強大的編程工具,使您能夠重複執行一組命令。在本教程中,您將學習以下類型的循環Shell程序:

  • while 循環

  • for 循環

  • until 循環

  • select 循環

你會根據不同情況使用不同的循環。例如用 while 循環執行命令,直到給定的條件下是 ture ,循環直到執行到一個給定的條件爲 false。

有良好的編程習慣,將開始使用情況的基礎上適當的循環。這裏while和for循環類似在大多數其他的編程語言,如C,C++ 和 Perl 等。

嵌套循環:

所有支持嵌套循環的概念,這意味着可以把一個循環內其他類似或不同的循環。這種嵌套可以去高達無限數量的時間根據需要。

嵌套的while循環和類似的方式,可以嵌套其他循環的基礎上的編程要求下面是一個例子:

嵌套while循環:

作爲另一個while循環的身體的一部分,這是可以使用一個while循環。

語法:

while command1 ; # this is loop1, the outer loop do Statement(s) to be executed if command1 is true while command2 ; # this is loop2, the inner loop do Statement(s) to be executed if command2 is true done Statement(s) to be executed if command1 is true done

例如:

這裏是循環嵌套一個簡單的例子,讓我們添加另一個倒計時循環內的循環,數到九:

#!/bin/sh a=0 while [ "$a" -lt 10 ] # this is loop1 do b="$a" while [ "$b" -ge 0 ] # this is loop2 do echo -n "$b " b=`expr $b - 1` done echo
a=`expr $a + 1` done

這將產生以下結果。重要的是要注意 echo -n 是如何工作。在這裏,-n選項echo ,以避免打印一個新行字符。

0 1 0 2 1 0 3 2 1 0 4 3 2 1 0 5 4 3 2 1 0 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0