发布时间:2019-09-08 09:13:28编辑:auto阅读(2001)
#/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模块
49233
48401
39122
36220
30633
27439
26431
21264
21108
19457
73°
277°
273°
379°
606°
421°
1109°
1092°
1083°
1077°