linux使用crontab执行定时任务
创建时间:2022-09-08 15:08:51
栏目:linux
直接修改/etc/crontab
即可
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# 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
0 0 * * * root /root/backup.sh
第一个参数 分(0-59)
第二个参数 时(0-59)
第三个参数 天(1-31)
第四个参数 月份(1-12)
第五个参数 周几(0-6)星期天为0
*表示所有
例子中 0 0 * * * root /root/backup.sh
意思为每天0点0分以root用户执行 /root/backup.sh