概述
shell编程经常要读文件行,可以用for,也可以用while。如果有空格,for读出来是以空格为分隔符,而while read 是以换行符为分隔符。
看下面的例子
1)一个普通的文本文件
[iptv@msg0 ana]$ more loghost.txt
msg0=172.41.17.127
msg1=172.41.17.128
msg2=172.41.17.129
msg3=172.41.17.130
msg4=172.41.17.131
msg5=172.41.17.132
msg6=172.41.17.135
msg7=172.41.17.136
2)写一个测试程序,变量a在经过for处理和while处理后的表现
[iptv@msg0 ana]$ more test2.sh
#!/bin/bash
a=2
cat loghost.txt|while read line;do
a=$line
done
echo after while:$a
for line in `cat loghost.txt`;do
a=$line
done
echo after for:$a
3)执行结果:
[iptv@msg0 ana]$ ./test2.sh
after while:2
after for:msg7=172.41.17.136
4)结论:
while read 循环里的变量是local的,不会对循环外的全局变量产生影响。
被这个坑害苦了!
最后
以上就是热心月饼为你收集整理的读取文件行时变量的作用域 for循环和while循环的作用域的全部内容,希望文章能够帮你解决读取文件行时变量的作用域 for循环和while循环的作用域所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复