标签: logging cron
我有一个cron作业,使用以下命令。
30 1 * * * find /opt/check/logs/app* -maxdepth 1 -mtime +1 | xargs tar -czvPf /archive/backup_$(date +%F).tar.gz
这将找到特定的日志文件并进行备份。
当我们手动运行上述命令时,它会起作用。我的问题是我无法确保这个cron正在运行。在脚本运行时有没有办法添加日志? (crontab日志除外)