本篇內(nèi)容均摘自《Linux命令行與shell腳本編程大全》绢记,個人認(rèn)為需要重點學(xué)習(xí)的章節(jié)。【免費】Linux命令行與Shell腳本編程大全 第3版 PDF全本 21MB 百度網(wǎng)盤下載 - 今夕是何夕 - 博客園
你可能會想爽蝴,一旦啟動了循環(huán)痴昧,就必須苦等到循環(huán)完成所有的迭代。并不是這樣的澜建。有兩個命令能幫我們控制循環(huán)內(nèi)部的情況:
1.break命令
2.continue命令
每個命令在如何控制循環(huán)的執(zhí)行方面有不同的用法向挖。下面幾節(jié)將介紹如何使用這些命令來控制循環(huán)。
13.7.1 break 命令
break命令是退出循環(huán)的一個簡單方法炕舵『沃可以用break命令來退出任意類型的循環(huán),包括while和until循環(huán)咽筋。
有幾種情況可以使用break命令:
- 跳出單個循環(huán)
在shell執(zhí)行break命令時溶推,它會嘗試跳出當(dāng)前正在執(zhí)行的循環(huán):
$ cat test17
#!/bin/bash
for var1 in 1 2 3 4 5 6 7 8 9 10
do
if [ $var1 -eq 5 ]
then
break
fi
echo "Iteration number: $var1"
done
echo "The for loop is completed"
$ ./test17
Iteration number: 1
Iteration number: 2
Iteration number: 3
Iteration number: 4
The for loop is completed
for循環(huán)通常都會遍歷列表中指定的所有值。但當(dāng)滿足if-then的條件時奸攻, shell會執(zhí)行break命令蒜危,停止for循環(huán)。
這種方法同樣適用于while和until循環(huán):
$ cat test18
#!/bin/bash
var1=1
while [ $var1 -lt 10 ]
do
if [ $var1 -eq 5 ]
then
break
fi
echo "Iteration: $var1"
var1=$[ $var1 + 1 ]
done
echo "The while loop is completed"
$ ./test18
Iteration: 1
Iteration: 2
Iteration: 3
Iteration: 4
The while loop is completed
while循環(huán)會在if-then的條件滿足時執(zhí)行break命令睹耐,終止辐赞。
- 跳出內(nèi)部循環(huán)
在處理多個循環(huán)時, break命令會自動終止你所在的最內(nèi)層的循環(huán)硝训。
$ cat test19
#!/bin/bash
for (( a = 1; a < 4; a++ ))
do
echo "Outer loop: $a"
for (( b = 1; b < 100; b++ ))
do
if [ $b -eq 5 ]
then
break
fi
echo " Inner loop: $b"
done
done
$ ./test19
Outer loop: 1
Inner loop: 1
Inner loop: 2
Inner loop: 3
Inner loop: 4
Outer loop: 2
Inner loop: 1
Inner loop: 2
Inner loop: 3
Inner loop: 4
Outer loop: 3
Inner loop: 1
Inner loop: 2
Inner loop: 3
Inner loop: 4
內(nèi)部循環(huán)里的for語句指明當(dāng)變量b等于100時停止迭代响委。但內(nèi)部循環(huán)的if-then語句指明當(dāng)變量b的值等于5時執(zhí)行break命令。注意窖梁,即使內(nèi)部循環(huán)通過break命令終止了晃酒,外部循環(huán)依然繼續(xù)執(zhí)行。
- 跳出外部循環(huán)
有時你在內(nèi)部循環(huán)窄绒,但需要停止外部循環(huán)贝次。 break命令接受單個命令行參數(shù)值:
break n
其中n指定了要跳出的循環(huán)層級。默認(rèn)情況下彰导, n為1蛔翅,表明跳出的是當(dāng)前的循環(huán)。如果你將n設(shè)為2位谋, break命令就會停止下一級的外部循環(huán)山析。
$ cat test20
#!/bin/bash
for (( a = 1; a < 4; a++ ))
do
echo "Outer loop: $a"
for (( b = 1; b < 100; b++ ))
do
if [ $b -gt 4 ]
then
break 2
fi
echo " Inner loop: $b"
done
done
$ ./test20
Outer loop: 1
Inner loop: 1
Inner loop: 2
Inner loop: 3
Inner loop: 4
注意,當(dāng)shell執(zhí)行了break命令后掏父,外部循環(huán)就停止了笋轨。
13.7.2 continue 命令
continue命令可以提前中止某次循環(huán)中的命令,但并不會完全終止整個循環(huán)赊淑【粽可以在循環(huán)內(nèi)部設(shè)置shell不執(zhí)行命令的條件。這里有個在for循環(huán)中使用continue命令的簡單例子:
$ cat test21
#!/bin/bash
for (( var1 = 1; var1 < 15; var1++ ))
do
if [ $var1 -gt 5 ] && [ $var1 -lt 10 ]
then
continue
fi
echo "Iteration number: $var1"
done
$ ./test21
Iteration number: 1
Iteration number: 2
Iteration number: 3
Iteration number: 4
Iteration number: 5
Iteration number: 10
Iteration number: 11
Iteration number: 12
Iteration number: 13
Iteration number: 14
當(dāng)if-then語句的條件被滿足時(值大于5且小于10)陶缺, shell會執(zhí)行continue命令钾挟,跳過此次循環(huán)中剩余的命令,但整個循環(huán)還會繼續(xù)饱岸。當(dāng)if-then的條件不再被滿足時掺出,一切又回到正軌徽千。
也可以在while和until循環(huán)中使用continue命令,但要特別小心汤锨。記住双抽,當(dāng)shell執(zhí)行continue命令時,它會跳過剩余的命令闲礼。如果你在其中某個條件里對測試條件變量進行增值牍汹,問題就會出現(xiàn):
$ cat badtest3
#!/bin/bash
var1=0
while echo "while iteration: $var1"
[ $var1 -lt 15 ]
do
if [ $var1 -gt 5 ] && [ $var1 -lt 10 ]
then
continue
fi
echo " Inside iteration number: $var1"
var1=$[ $var1 + 1 ]
done
$ ./badtest3 | more
while iteration: 0
Inside iteration number: 0
while iteration: 1
Inside iteration number: 1
while iteration: 2
Inside iteration number: 2
while iteration: 3
Inside iteration number: 3
while iteration: 4
Inside iteration number: 4
while iteration: 5
Inside iteration number: 5
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
while iteration: 6
你得確保將腳本的輸出重定向到了more命令,這樣才能停止輸出位仁。在if-then的條件成立之前,所有一切看起來都很正常方椎,然后shell執(zhí)行了continue命令聂抢。當(dāng)shell執(zhí)行continue命令時,它跳過了while循環(huán)中余下的命令棠众。不幸的是琳疏,被跳過的部分正是$var1計數(shù)變量增值的地方,而這個變量又被用于while測試命令中闸拿。這意味著這個變量的值不會再變化了空盼,從前面連續(xù)的輸出顯示中你也可以看出來。
和break命令一樣新荤, continue命令也允許通過命令行參數(shù)指定要繼續(xù)執(zhí)行哪一級循環(huán):
continue n
其中n定義了要繼續(xù)的循環(huán)層級揽趾。下面是繼續(xù)外部for循環(huán)的一個例子:
$ cat test22
#!/bin/bash
for (( a = 1; a <= 5; a++ ))
do
echo "Iteration $a:"
for (( b = 1; b < 3; b++ ))
do
if [ $a -gt 2 ] && [ $a -lt 4 ]#此處用continue命令來停止處理循環(huán)內(nèi)的命令(從這個if到fi),但會繼續(xù)處理外部循環(huán)苛骨。
then
continue 2
fi
var3=$[ $a * $b ]
echo " The result of $a * $b is $var3"
done
done
$ ./test22
Iteration 1:
The result of 1 * 1 is 1
The result of 1 * 2 is 2
Iteration 2:
The result of 2 * 1 is 2
The result of 2 * 2 is 4
Iteration 3:
Iteration 4:
The result of 4 * 1 is 4
The result of 4 * 2 is 8
Iteration 5:
The result of 5 * 1 is 5
The result of 5 * 2 is 10
其中的if-then語句:
if [ $a -gt 2 ] && [ $a -lt 4 ]
then
continue 2
fi
注意:值為3的那次迭代并沒有處理任何內(nèi)部循環(huán)語句篱瞎,因為盡管continue命令停止了處理過程,但外部循環(huán)依然會繼續(xù)痒芝。