wget不能在linux下的crontab中运行?[重复]


0

这个问题在这里已有答案:

我有这个命令我想每天用我的QNAP NAS(linux)运行一次:

wget 'http://url.link' -O catalog/output.file

在终端它工作正常,文件正在下载但是当它添加到crontab时,它没有下载。

我在crontab中尝试过这一行:

08 20 * * * wget 'http://url.link' -O catalog/output.file

有人可以帮助我为什么这不是在20.08下载?


环境与crontab终端不同。尝试把完整路径既wgetoutput.file,并通过将输出重定向到一个日志文件中>>/FullPath/wget.log 2>&1crontab条目。
AFH

Answers:


0

采用:

crontab /etc/config/crontab && /etc/init.d/crond.sh restart

@lovfall我不知道为什么你的设置需要你这样初始化crontab,但这真的不是现在的方式。通常它会是sudo service crontab restart这样的。
杰克古尔德
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.