真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

自動(dòng)打包下載遠(yuǎn)程文件

#!/usr/bin/env puthon

import pexpect
import sys

#定義目標(biāo)主機(jī)
r_ip="IP_ADDRSS"
r_user="USERNAME"
r_passwd="PASSWORD"

#定義目標(biāo)主機(jī)nginx日志文件
target_file="/path/to/nginx_access.log"

#運(yùn)行ssh命令
child = pexpect.spawn('/usr/bin/ssh', [r_user+'@'+r_ip])
#輸入輸出寫入日志文件
fout = file('mylog.txt','w')
child.logfile = fout

try:
    child.expect('(?i)password')#匹配password字符串,(?i)不區(qū)分大小寫
    child.sendline(r_passwd)
    child.expect('#')
    child.sendline('tar -czf /path/to/nginx_access.tar.gz '+target_file)#打包日志文件
    child.expect('#')
    print child.before
    child.sendline('exit')
    fout.close()
except EOF:  #定義異常處理
    print "expect EOF"
except TIMEOUT: #定義超時(shí)處理
    print "expect TIMEOUT"

child = pexpect.spawn('/usr/bin/scp', [r_user+'@'+r_ip+':/data/nginx_access.tar.gz','/home'])#scp命令拷貝文件
fout = file('mylog.txt','a')
child.logfile = fout
try:
    child.expect('(?i)password')
    child.sendline(passwd)
    child.expect(pexpect.EOF)
except EOF:
    print "expect EOF"
except TIMEOUT:
    print "expect TIMEOUT"

網(wǎng)頁(yè)名稱:自動(dòng)打包下載遠(yuǎn)程文件
瀏覽路徑:http://weahome.cn/article/psdcdp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部