1 Star 0 Fork 0

toliong/myscript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
get_remote_log.bash 625 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
#
# useage="""
# Need a argues.
# useage: bash ${0} remote_host
# """
# if [ $# != 1 ];then
# echo "$useage"
# exit 2
# fi
RemoteHost=139.129.5.187
ProList=(
24-walrus-live
34-picasso-live
44-cirrus-live
54-roraima-live
64-shasta-live
74-frisian-live
84-saltee-live
94-meteora-live
)
ProPath=/alidata-1/hosts
SavePath=/home/log_bak
#save_path exists or not
if [ ! -d $SavePath ];then
mkdir $SavePath
fi
#connect remote & rsync files
cd $SavePath
for EachPro in ${ProList[*]};do
if [ ! -d $EachPro ];then
mkdir $EachPro
fi
rsync -avlr $RemoteHost:$ProPath/$EachPro/log/*.gz $EachPro
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/toliong/myscript.git
git@gitee.com:toliong/myscript.git
toliong
myscript
myscript
master

搜索帮助