发布时间:2019-09-08 09:13:28编辑:auto阅读(2105)
#/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模块
50471
49762
40356
37387
31806
28665
27599
22385
22381
20686
451°
1067°
866°
804°
1045°
920°
1536°
2874°
2574°
1973°