Enter a standard 5-field cron expression to translate it into plain English
To understand a cron expression, paste the five fields into the box and the tool translates them into plain English, such as 0 9 * * 1-5 meaning at 9:00 AM Monday through Friday. Use the preset buttons to build common schedules quickly. It runs in your browser and is free.
A cron expression is a string of five fields that defines a schedule for running tasks on Unix-like systems. The fields, in order, are: minute (0-59), hour (0-23), day of month (1-31), month (1-12), and day of week (0-6, where 0 and 7 both mean Sunday).
Each field accepts special characters: * matches every value, */n runs at every nth interval, a-b defines a range, and a,b,c defines a list of specific values.
Example: 0 9 * * 1-5 means "At 09:00 AM, Monday through Friday".