我需要更改以下时间表,以仅在第二小时排除星期二和星期四。
0 2,20 * * *
我想每天在凌晨2点和晚上8点做一份工作,但在星期二和星期四不包括凌晨2点的工作。
答案 0 :(得分:0)
我认为您需要的只是
0 2,20 * * 1,3,4,6,7
最后的数字是星期几。哦,是星期天。
答案 1 :(得分:0)
最简单的答案是在crontab中输入两个单独的条目:
# .---------------- 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,20 * * 0,1,3,5,6 root /path/to/command.sh
* 20 * * 2,4 root /path/to/command.sh
确保command.sh不在/etc/cron.*文件夹中。