您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Shell編程中while與for的區別有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
一、常用語法
1、for循環
for循環常用的語法結構有如下幾種:
for 變量 in seq字符串
for 變量 in `command` " "
for 變量 in "$@"或“$*”
for((賦值;條件;運算語句))
2、while循環
while循環常用的語法結構有如下幾種:
while [ $i -lt num ] while true while read a b c; do command done < filename cat 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 while df -hl|awk 'int($5) >30 ' > testfile result=`df -hl|awk 'int($5) >30 '` echo '******************* for testing *****************' for i in $result;do echo $i done echo '******************* while echo test *************' echo $result | while read line do echo $line done echo '****************** while testing ****************' df -hl|awk 'int($5) >30 '|while read line do echo $IP `hostname` $line done echo '****************** while read file **************' while read line do echo $IP `hostname` $line done < testfile
上面的腳本執行時結果如下:
# sh forwhile.sh ******************* for testing ***************** /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 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% /home localhost /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% /home localhost /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 loop echo -en "\t";date cat abc.txt|while read user ip do { ssh -o ConnectTimeout=10 $user@$ip "hostname" < /dev/null sleep 10s } & done wait echo "This is while loop." echo -en "\t";date sleep 10s echo -e "\n" # for loop echo -en "\t";date for 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 } & done wait echo "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 file aaaa bbbb fff ggg cccc dddd $ cat file | while read line; do echo $line; done aaaa bbbb fff ggg cccc dddd $ for line in $(<file); do echo $line; done aaaa bbbb fff ggg cccc dddd
感謝各位的閱讀!關于“Shell編程中while與for的區別有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。