我需要通过cron表达式执行脚本,该表达式是每周5天(周一至周五)格林尼治标准时间下午6点到早上7点之间。
请告知这个cron的表达方式..
我试过这个......
0 00 23 ? * MON-FRI
答案 0 :(得分:2)
格式如下:
+---------------- minute (0 - 59)
| +------------- hour (0 - 23)
| | +---------- day of month (1 - 31)
| | | +------- month (1 - 12)
| | | | +---- day of week (0 - 6) (Sunday=0 or 7)
| | | | |
* * * * * command to be executed
你可能想要它:
* 6 * * 1-5 command
这将在每分钟从6.00到6.59。如果您还需要在7.00执行它:
* 6 * * 1-5 command
0 7 * * 1-5 command
如果你想从6.00到7.59,每分钟:
* 6-7 * * 1-5 command