在shell編程中經常用到迴圈,常用的迴圈有for和while迴圈兩種。while迴圈預設以行讀取檔案,而for迴圈以空格讀取檔案切分檔案,本篇就結合現網的一些使用樣本說說二者的用法和區別。
一、常用文法
1、for迴圈
for迴圈常用的文法結構有如下幾種:
for 變數 in seq字串
for 變數 in `command` " "
for 變數 in "$@"或“$*”
for((賦值;條件;運算語句))
2、while迴圈
while迴圈常用的文法結構有如下幾種:
while [ $i -lt num ]while truewhile read a b c; do command done < filenamecat filename | while read a b c
二、行讀取樣本
這裡以常見的df擷取磁碟資訊為例,瞭解下使用for和while的幾種迴圈方法處理時的區別。先看下我寫的指令碼,內容如下:
#/bin/bash## author: yangbk## site: www.361way.com## mail: itybku@139.com## desc: test loop for in and whiledf -hl|awk 'int($5) >30 ' > testfileresult=`df -hl|awk 'int($5) >30 '`echo '******************* for testing *****************'for i in $result;doecho $idoneecho '******************* while echo test *************'echo $result | while read linedoecho $linedoneecho '****************** while testing ****************'df -hl|awk 'int($5) >30 '|while read linedoecho $IP `hostname` $linedoneecho '****************** while read file **************'while read linedoecho $IP `hostname` $linedone < testfile
上面的指令碼執行時結果如下:
# sh forwhile.sh******************* for testing *****************/dev/sda39.5G5.7G3.4G64%//dev/sda239G19G18G52%/home/dev/sda69.5G7.1G2.0G78%/usr******************* while echo test *************/dev/sda3 9.5G 5.7G 3.4G 64% / /dev/sda2 39G 19G 18G 52% /home /dev/sda6 9.5G 7.1G 2.0G 78% /usr****************** while testing ****************localhost /dev/sda3 9.5G 5.7G 3.4G 64% /localhost /dev/sda2 39G 19G 18G 52% /homelocalhost /dev/sda6 9.5G 7.1G 2.0G 78% /usr****************** while read file **************localhost /dev/sda3 9.5G 5.7G 3.4G 64% /localhost /dev/sda2 39G 19G 18G 52% /homelocalhost /dev/sda6 9.5G 7.1G 2.0G 78% /usr
可以看到,只有後面兩種方法可以正常擷取到我們想要的資料,前面兩種方法在處理時和我們想要的結果都不一樣。此樣本得出的結果為:
1、while迴圈: 以行讀取檔案,預設分隔符號是空格或者Tab;
2、for迴圈: 以空格讀取檔案,也就是碰到空格,就開始執行迴圈體,所以需要以行讀取的話,就要把空格轉換成其他字元。
三、ssh串連與wait
這裡還是以一個測試指令碼為例:
#!/bin/bash## author: yangbk## site: www.361way.com## mail: itybku@139.com## desc: test wait and ssh when use for in and while# while loopecho -en "\t";datecat abc.txt|while read user ipdo{ssh -o ConnectTimeout=10 $user@$ip "hostname" < /dev/nullsleep 10s} &donewaitecho "This is while loop."echo -en "\t";datesleep 10secho -e "\n"# for loopecho -en "\t";datefor line in `cat abc.txt|sed -e 's/ /--/g'`do{user=`echo $line|awk -F '--' '{print $1}'`ip=`echo $line|awk -F '--' '{print $2}'`ssh -oConnectTimeout=10 $user@$ip "hostname"sleep 10s} &donewaitecho "This is for loop."echo -en "\t";date
此樣本的結果這裡不再輸出,具體可以使用該指令碼ssh幾台主機做個測試,測試後得到結果如下:
1、for迴圈: 迴圈體在後台執行,等待迴圈體全部執行結束,後面的命令接著執行。
2、while迴圈: wait沒起到作用,迴圈體在後台執行,後面的命令也同時在執行。迴圈體內有ssh、scp、sshpass的時候有執行一次迴圈就退出的情況,解決該問題方法有如下兩種:
a、使用ssh -n "command" ;
b、將while迴圈內加入null重新導向,如 ssh "cmd" < /dev/null 將ssh 的輸入重新導向輸入。
四、執行效率
在對大檔案進行按行讀取(for在讀取檔案時,可以for i in `cat filename`進行按行讀取)的效率方面,經測試while 要更快一些。
shell:for和while用法
寫法一:
----------------------------------------------------------------------------
#!/bin/bash
while read line
do
echo $line
done < file(待讀取的檔案)
----------------------------------------------------------------------------
寫法二:(並髮腳本慎用,grep不能輸出全部匹配的資訊)
----------------------------------------------------------------------------
#!/bin/bash
cat file(待讀取的檔案) | while read line
do
echo $line
done
----------------------------------------------------------------------------
寫法三:
----------------------------------------------------------------------------
for line in `cat file(待讀取的檔案)`
do
echo $line
done
----------------------------------------------------------------------------
說明:
for逐行讀和while逐行讀是有區別的,如:
$ cat fileaaaabbbb fff gggcccc dddd$ cat file | while read line; do echo $line; doneaaaabbbb fff gggcccc dddd$ for line in $(<file); do echo $line; doneaaaabbbbfffgggccccdddd