发布时间:2019-09-08 09:13:28编辑:auto阅读(1951)
#/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模块
48802
47840
38613
35800
30223
26971
26008
20842
20626
19003
411°
489°
519°
527°
514°
496°
566°
629°
746°
787°