Невозможно получить cron для добавления вывода из wget
У меня есть настройка и запуск cronjob, но файл журнала перезаписывается при каждом запуске. Я хотел бы, чтобы вывод wget добавлялся при каждом запуске cron.
Почему это и как мне это исправить?
0 0 * * * wget url/script.php -O - >> /home/user/app/logs/logfile
1 ответ
man wget
-a logfile
--append-output=logfile
Append to logfile. This is the same as -o, only it appends to
logfile instead of overwriting the old log file. If logfile does
not exist, a new file is created.
Попробуйте по этой схеме.