1 Star 0 Fork 3

龚帅立 / shell脚本

forked from xxxx / shell脚本 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
download_from_ftp.sh 330 Bytes
一键复制 编辑 原始数据 按行查看 历史
xxxx 提交于 2021-04-07 13:55 . add download_from_ftp.sh.
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage: $0 filename"
fi
dir=$(dirname $1)
file=$(basename $1)
ftp -n -v << EOF # -n 自动登录
open 192.168.1.10 # ftp服务器
user admin password
binary # 设置ftp传输模式为二进制,避免MD5值不同或.tar.gz压缩包格式错误
cd $dir
get "$file"
EOF
Shell
1
https://gitee.com/gong-shuaili/shell-script.git
git@gitee.com:gong-shuaili/shell-script.git
gong-shuaili
shell-script
shell脚本
master

搜索帮助