Cron Expression for Lunch and Dinner Hours
Run at 12 PM and 7 PM every day
Cron Expression
0 12,19 * * *
Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
0
At the start of the hour
Hours
12,19
At 12:00 and 19:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
*
Any value
Summary
This schedule will run your task run at 12 pm and 7 pm every day.