首页 > 学院 > 操作系统 > 正文

Shell sftp下载文件

2024-06-28 16:01:21
字体:
来源:转载
供稿:网友
#!/bin/sh########################################### sftp download file# create by maxj# 2017/02/06##########################################if [ $# != 5 ];then echo "usage:[ftpip:$1 user:$2 ftppwd:$3 ftpDir:$4 localDir:$5]" exit -1fiftpIp=$1ftpUser=$2ftpPwd=$3ftpDir=$4localDir=$5#if [ -f $4 ];#then# echo "no such file or directory"#fisftp $2@$1 <<EOFget $4 $5quitEOF
上一篇:检查是否开启了防火墙

下一篇:pandas

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表