CRON计划字符串从一小时开始到半小时结束

时间:2015-01-29 23:48:46

标签: linux cron cronexpression

需要从上午8点到下午3点30分每3分钟安排一份工作。我知道如何从早上8点到下午3点这样做。如何让它继续下午3:30?

2 个答案:

答案 0 :(得分:3)

other answer有正确的想法,但数字不正确。

这应该有效:

*/3    8-14 * * * command
0-30/3 15   * * * command

第一行从早上8点到下午2点57分每3分钟运行command 第二行从下午3点到下午3点30分每3分钟运行command

答案 1 :(得分:0)

除了两行之外别无他法

*/3 8-14 * * * command
0-30/3 15 * * * command