显示 cron 任务的运行情况及其调用时间的程序

显示 cron 任务的运行情况及其调用时间的程序

为什么没有一个应用程序可以让我查看所有 cron 作业的概览,包括它们被调用的时间、运行文件的用户以及它在哪个文件上运行。如下所示:

~$ showmecron
root    5 8 * * 6   /etc/cron.d/script-a
root    5 8 * * 6   /etc/cron.d/script-b
userX   weekly      /etc/cron.weekly/script-c
userY   daily       /etc/cron.daily/script-d

有程序可以显示这一点吗?

相关内容