wget 不能在 Linux 的 crontab 中运行吗?

wget 不能在 Linux 的 crontab 中运行吗?

我有这个命令,我想每天使用我的 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 上无法下载吗?

答案1

使用:

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

相关内容