pexpect脚本执行无报错,但是没有执行结果
python脚本中使用pexpect模块实现远程SSH登录,登陆成功后显示/home目录文件清单,并通过日志文件记录所有的输入与输出。
#!/usr/bin/env python
import pexpect
import sys
child=pexpect.spawn('ssh xxxxx@192.168.42.2')
fout=file('mylog1.txt','w')
child.logfile=fout
child.expect("password:")
child.sendline("xxxxx")
child.expect('$')
child.sendline('ls /home')
运行结果:
xxxxx:pythontest/ $ python simple1.py
xxxxx:pythontest/ $ cat mylog1.txt
xxxxxx@192.168.42.2's password: xxxxxx
ls /home
期望运行结果:
xxxxx:pythontest/ $ cat mylog1.txt
xxxxxx@192.168.42.2's password: xxxxxx
ls /home
xxx xxxx.zshrc
问题以解决:child.expect(pexpect.EOF)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在最后一行下面加:
child.expect(pexpect.EOF)
执行成功
用fabric吧:
http://www.fabfile.org/