linux 自动登录ftp 获取文件
Posted rookie-ray
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 自动登录ftp 获取文件相关的知识,希望对你有一定的参考价值。
1.ftp自动登录批量下载文件
#####从ftp服务器上的remote_path 到 本地的local_path
#!/bin/bash
ftp -n<<!
open ip
user username password
binary
cd remote_path
lcd local_path
prompt
#单个文件用get,多个文件用mget
mget *
close
bye
!
2.ftp自动登录上传文件
####本地的local_path to ftp服务器上的remote_path
#!/bin/bash
ftp -n<<!
open ip
user username password
binary
hash
cd remote_path
lcd local_path
prompt
#单个文件用get,多个文件用mget
mput *
close
bye
!
以上是关于linux 自动登录ftp 获取文件的主要内容,如果未能解决你的问题,请参考以下文章