发布时间:2019-09-08 09:13:28编辑:auto阅读(1709)
#/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模块
47863
46424
37314
34759
29332
25990
24945
19967
19563
18050
5806°
6433°
5946°
5975°
7079°
5925°
5963°
6456°
6417°
7798°