每天从早上6点到晚上11:30运行Cron工作

时间:2012-12-07 07:10:27

标签: cron job-scheduling

你能帮助我每天运行我的cron工作吗?  以下列格式从早上6点到晚上11:30

          • 命令路径

由于

1 个答案:

答案 0 :(得分:15)

cron可以轻松地开始工作,但是如果你需要在早上6点到晚上11点30分从运行,你需要在早上6点发出启动命令,并在晚上11点30分发出停止命令。

类似的东西:

## start the job (6am)
  0  6 * * * /usr/bin/start-my-job

## stop the job (11.30pm)
 30 23 * * * /usr/bin/stop-my-job

编辑:我想我现在看到了你的要求。试试这个:

## every three minutes between 6am and 11.30pm
    */3  6-22 * * * my-command
 0-30/3    23 * * * my-command

编辑:好的,如果你想要在下午6点到第二天的中午,你需要:

## every three minutes between midnight and midday
  */3   0-11  * * * my-command
## every three minutes between 6pm and midnight
  */3  18-23  * * * my-command