一、while循環(huán)
while循環(huán)用于不斷執(zhí)行一系列命令,也用于從輸入文件中讀取數(shù)據(jù);命令通常為測(cè)試條件。其格式為:
復(fù)制代碼 代碼如下:
while 命令
do
command1
command2
...
commandN
done
命令執(zhí)行完畢,控制返回循環(huán)頂部,從頭開始直至測(cè)試條件為假。
以下是一個(gè)基本的while循環(huán),測(cè)試條件是:如果COUNTER小于5,那么條件返回真。COUNTER從0開始,每次循環(huán)處理時(shí),COUNTER加1。運(yùn)行上述腳本,返回?cái)?shù)字1到5,然后終止。
復(fù)制代碼 代碼如下:
COUNTER=0
while [ $COUNTER -lt 5 ]
do
COUNTER='expr $COUNTER+1'
echo $COUNTER
done
運(yùn)行腳本,輸出:
1
2
3
4
5
while循環(huán)可用于讀取鍵盤信息。下面的例子中,輸入信息被設(shè)置為變量FILM,按Ctrl-D>結(jié)束循環(huán)。
復(fù)制代碼 代碼如下:
echo 'type CTRL-D> to terminate'
echo -n 'enter your most liked film: ''
while read FILM
do
echo "Yeah! great film the $FILM"
done
運(yùn)行腳本,輸出類似下面:
type CTRL-D> to terminate
enter your most liked film: Sound of Music
Yeah! great film the Sound of Music
二、until循環(huán)
until循環(huán)執(zhí)行一系列命令直至條件為真時(shí)停止。until循環(huán)與while循環(huán)在處理方式上剛好相反。一般while循環(huán)優(yōu)于until循環(huán),但在某些時(shí)候—也只是極少數(shù)情況下,until循環(huán)更加有用。
until循環(huán)格式為:
復(fù)制代碼 代碼如下:
until 條件
command1
command2
...
commandN
done
條件可為任意測(cè)試條件,測(cè)試發(fā)生在循環(huán)末尾,因此循環(huán)至少執(zhí)行一次—請(qǐng)注意這一點(diǎn)。
您可能感興趣的文章:- linux shell在while中用read從鍵盤輸入的實(shí)現(xiàn)
- Shell編程中while與for的區(qū)別及用法詳解
- Shell中的for和while循環(huán)詳細(xì)總結(jié)
- Windows Powershell Do While 循環(huán)
- Shell中的循環(huán)語(yǔ)句for、while、until實(shí)例講解
- linux shell流程控制語(yǔ)句實(shí)例講解(if、for、while、case語(yǔ)句實(shí)例)
- shell命令while循環(huán)中使用sleep命令代碼示例