Search code examples
jenkinscroncron-task

Cron command for 5.01am-11.59pm?


Cron command for 5.01am-11.59pm?

I have tried the URL:https://crontab.guru/#_5-23___ but cant seem to get the required times generated.


Solution

  • If you could simplify your requirement to run every minute from 5:00am to 11:59pm, it would be

    * 5-23 * * *

    If you really can't run it at 5:00, you'll have to break it up into two jobs:

    1-59 5 * * *

    and

    * 6-23 * * *