这篇文章给大家分享的是有关shell编程中while与for的区别有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、常用语法1、for循环for循环常用的语法结构有如下几种:for 变量 in seq字符串
这篇文章给大家分享的是有关shell编程中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
可以看到,只有后面两种方法可以正常获取到我们想要的数据,前面两种方法在处理时和我们想要的结果都不一样。此示例得出的结果为:
while循环: 以行读取文件,默认分隔符是空格或者Tab;
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几台主机做个测试,测试后得到结果如下:
for循环: 循环体在后台执行,等待循环体全部执行结束,后面的命令接着执行。
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
感谢各位的阅读!关于“Shell编程中while与for的区别有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
--结束END--
本文标题: Shell编程中while与for的区别有哪些
本文链接: https://lsjlt.com/news/257002.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0