gpt4 book ai didi

scripting - cron作业通过FTP上传文件

转载 作者:行者123 更新时间:2023-12-04 17:14:05 24 4
gpt4 key购买 nike

是否可以使用CRON通过FTP上传文件?如果是,我该如何调用FTP来进行上传?

最佳答案

假设使用类似UNIX的操作系统,则可以设置一个cron作业,该作业指向如下所示的shell脚本:

#!/bin/sh
cd [source directory]
ftp -n [destination host]<<END
user [user] [password]
put [source file]
quit
END

根据ftp客户端的默认设置和源文件类型,您可能需要在 binary之前指定 put

关于scripting - cron作业通过FTP上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1047050/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com