← Back to all configurations

Cron Expression for Weekend Evening Batch

Run every 30 minutes from 6 PM to 11 PM on weekends

Cron Expression

*/30 18-23 * * 0,6

Understanding this Expression

This cron expression consists of 5 fields that specify when your task will run:

Minutes
*/30
Every 30 minutes
Hours
18-23
From 18:00 to 23:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
0,6
On Sunday and Saturday

Summary

This schedule will run your task run every 30 minutes from 6 pm to 11 pm on weekends.