/etc/crontab 文件中此行含义是什么?
59 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly
答案1
59 * * * *
- 每小时 59 分运行一次、每月每天运行一次、每月运行一次、每周每天
root
运行一次 - 以 root 用户身份运行
rm -f /var/spool/cron/lastrun/cron.hourly
- 执行此命令
以下是 CentOS 6 上 crontab 示例的一个很好的表示:
# Example of job definition:
.---------------- minute (0 - 59)
| .------------- hour (0 - 23)
| | .---------- day of month (1 - 31)
| | | .------- month (1 - 12) OR jan,feb,mar,apr ...
| | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
| | | | |
* * * * * user-name command to be executed
答案2
我认为这可以防止每小时运行 cron 作业!
如果您有某个用户每小时运行一次的作业,并且您想找到该作业,只需运行:
对于 $(cut -f1 -d: /etc/passwd) 中的用户;执行 crontab -u $user -l;完成
此命令用于列出所有用户的所有 cron 作业。在某些情况下,您会在这里找到 cron 作业 /etc/crontab,但这不是您的 cronjobs 的文件,只是系统范围的 crontab