0

I have this command I want to run once every day with my QNAP NAS (linux):

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

In terminal it works fine and the file is downloading but when adding it to crontab it doesn´t download.

I have tried this line in crontab:

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

Can someone help me why this isn´t downloading at 20.08?

Giacomo1968
  • 58,727

1 Answers1

0

Use:

crontab /etc/config/crontab && /etc/init.d/crond.sh restart
TomEus
  • 3,793