标签:pexect ssh
python(pexpect)简单的自动ssh脚本
# vi ssh.py
#!/usr/bin/python
按a或i进入编辑模式
import pexpect
child=pexpect.spawn(‘ssh ming@10.0.0.2‘)
child.expect(‘password:‘)
child.sendline(‘123456‘)
child.interact()
child.close()
按Esc键退出编辑模式
:wq(保存并退出)
# python ssh.py
要自动退出登录在child.interact()前加child.sendline(‘exit‘)即可,此处也可执行其它任何命令
本文出自 “linux” 博客,请务必保留此出处http://yangzhiming.blog.51cto.com/4849999/1677036
标签:pexect ssh
原文地址:http://yangzhiming.blog.51cto.com/4849999/1677036