1 Star 5 Fork 3

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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/fly-around/shell-script.git
git@gitee.com:fly-around/shell-script.git
fly-around
shell-script
shell脚本
master

搜索帮助