确定 cron 作业是否已运行的最佳方法是什么?有日志吗?人们使用什么技术?
使用 macos Monterey 似乎你应该使用以下 shell 命令
log show --process cron
如果需要,您可以添加 --info 和/或 --debug
我刚刚将 cron 脚本 >> 的输出重定向到一个文件,这似乎工作得很好。
Mac 上的 Cron 自动将用户的作业记录到
/var/mail/{username}
tail -f /var/log/syslog | grep CRON
“syslog”可能不位于“/var/log/”中,在这种情况下,只需运行以下行即可获取其位置:
whereis syslog