发布时间:2019-09-08 09:13:28编辑:auto阅读(2144)
#/usr/bin/env python
import pexpect
import sys
ip = "192.168.1.116"
user = "root"
passwd = "vision"
target_file = "/usr/local/src/1.txt"
child = pexpect.spawn("/usr/bin/ssh", [user+'@'+ip])
fout = file('/usr/local/src/package.log', 'w')
child.logfile = fout
try:
child.expect('(?i)password:')
child.sendline(passwd)
child.expect('#')
child.sendline("sed -i 's#victor#david#g' "+target_file)
child.expect('#')
child.sendline('exit')
fout.close()
except EOFError as EOF:
print("EOF")
except Exception as TIMEOUT:
print("TIMEOUT")
上一篇: python计算春节倒计时
下一篇: Python 之os模块
50958
50341
40956
37825
32289
29179
28069
22897
22858
21191
1051°
1728°
1410°
1348°
1609°
1438°
2094°
3637°
3563°
2510°