首页 > 代码库 > shell脚本执行冲突事件-ssh&while
shell脚本执行冲突事件-ssh&while
今天发现一个问题: 先看下脚本内容: root@pts/0 # cat !$ cat /tmp/test_nginx ls *.txt | tr ‘ ‘ ‘\n‘ | while read line do echo $line if [ ‘yes‘ == ‘yes‘ ] then ssh 192.168.109.10 "echo ‘yes‘" else ssh 192.168.109.10 "echo ‘no‘" fi done 上面脚本很简单,读取当前目录的所有以txt结尾的文件(实际上我只是取得循环次数),但我们 运行脚本会发现脚本只循环一次就退出了。效果如下: root@pts/0 # bash -x /tmp/test_nginx + tr ‘ ‘ ‘\n‘ + ls 1.txt 2.txt ip.txt png.txt + read line + echo 1.txt 1.txt + ‘[‘ yes == yes ‘]‘ + ssh 192.168.9.10 ‘echo ‘\‘‘yes‘\‘‘‘ yes + read line 此时恭喜你,你如愿接触到ssh 和while 冲突事件了! 办法始终比较问题多。 解决办法很简单: 方法一: ssh 192.168.109.10 "echo ‘yes‘" 改为 ssh 192.168.109.10 "echo ‘yes‘" < /dev/null 方法二: ssh 192.168.109.10 "echo ‘yes‘" 改为 ssh -n 192.168.109.10 "echo ‘yes‘" 产生的原因: ssh 命令将while未执行的循环给读取了,下面内容可以帮助你理解。 root@pts/0 # bash -x /tmp/test_nginx + ls 1.txt 2.txt ip.txt png.txt + tr ‘ ‘ ‘\n‘ + read line + echo 1.txt 1.txt + ‘[‘ yes == yes ‘]‘ + ssh 192.168.9.10 cat //我们将命令改成cat,就会发现了。 2.txt ip.txt png.txt + read line
本文出自 “linux系统维护” 博客,请务必保留此出处http://linuxadmin.blog.51cto.com/2683824/1885184
shell脚本执行冲突事件-ssh&while
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。