linux crontab 排程使用参考

今天正好设置一个系统排程,可是按自己的理解设来设去,就是不按我设置的时间运行,在google搜了好多,看到也有好多朋友在问,为什么我的排程不按我设置的时间来运行呢,后来经过仔细查看,觉得linux系统自带的一个排程可以作为参考.

[root@router ~]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# run-parts
01 * * * * root run-parts /etc/cron.hourly 每小时01分
02 4 * * * root run-parts /etc/cron.daily 每天4点02分
22 4 * * 0 root run-parts /etc/cron.weekly 每周4点22分
42 4 1 * * root run-parts /etc/cron.monthly 每月1号4点42分

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzwfws.html