在BASH脚本中上传FTP

前端之家收集整理的这篇文章主要介绍了在BASH脚本中上传FTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要将目录/ home / test的全部内容上传到我的ftp服务器,在特定的文件夹中.
然后我将通过cron每小时安排脚本.
任何例子?

NB.考虑到我在Netgear ReadyNAS Duo(debian盒子)上,我无法安装lftp或类似物,只能使用标准命令:)

在线找到这个有质量文档的bash脚本:
#!/bin/bash

HOST=ftp.server.com  #This is the FTP servers host or IP address.
USER=ftpuser             #This is the FTP user that has access to the server.
PASS=password          #This is the password for the FTP user.

# Call 1. Uses the ftp command with the -inv switches. 
#-i turns off interactive prompting. 
#-n Restrains FTP from attempting the auto-login feature. 
#-v enables verbose and progress. 

ftp -inv $HOST << EOF

# Call 2. Here the login credentials are supplied by calling the variables.

user $USER $PASS

# Call 3. Here you will change to the directory where you want to put or get
cd /path/to/file

# Call4.  Here you will tell FTP to put or get the file.
put test.txt

# End FTP Connection
bye

EOF

配置并保存.sh脚本后,使其可执行:

chmod x ftpscript.sh

最后,配置你的cronjob

原文链接:/bash/385767.html

猜你在找的Bash相关文章