1 Star 0 Fork 0

Mr.HayesLin/sshClient

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
startup.py 742 Bytes
一键复制 编辑 原始数据 按行查看 历史
扫地僧 提交于 2019-07-29 18:16 . Initial commit
#!/usr/bin/env python3
# -*- coding:utf-8 -*- #
from sshtools import Application
from tools import *
if __name__ == '__main__':
list = readHosts("hosts.txt")
# print(list)
for line in list:
print(line)
fields = line.split("|")
host = fields[0]
user = fields[2]
passwd = fields[3]
remotepath = fields[4]
localpath = fields[5]
app = Application(host, user, passwd)
cm1 = "cd "+remotepath
cm1 += ";files=`find . | grep out`"
cm1 += ";tar -zcvf file.tgz $files "
# cm1 += ";rm -rf xxxxx"
result = app.run_commond(cm1)
print(result)
app.download_from_server(remotepath+"/file.tgz" , localpath+"/zoo.tgz")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hayeslin/sshClient.git
git@gitee.com:hayeslin/sshClient.git
hayeslin
sshClient
sshClient
master

搜索帮助