Build cron expressions visually with dropdowns, presets, human-readable descriptions, and next execution times.
Last updated: September 2026* any value
1,3,5 value list
1-5 range of values
*/5 step / interval
A cron expression is a string of five fields separated by spaces that defines a recurring schedule. Cron is used by Unix/Linux systems, CI/CD pipelines, cloud schedulers (AWS CloudWatch, Google Cloud Scheduler), and task automation platforms to trigger jobs at precise intervals. The five fields are: minute (0-59), hour (0-23), day of month (1-31), month (1-12), and day of week (0-6, where 0 is Sunday).
Each field can use special characters: * means every value, , separates a list (e.g., 1,3,5), - defines a range (e.g., 1-5 for Monday through Friday), and / sets a step (e.g., */15 means every 15 units). These can be combined for complex schedules.
Use this builder when configuring scheduled tasks on Linux servers (crontab), setting up CI/CD pipeline triggers, scheduling database backups, configuring monitoring alerts, or any scenario that needs a cron expression. The visual interface eliminates syntax errors and the preview of upcoming execution times lets you verify the schedule before deploying.
13 in the hour field means 1 PM.Weekly tips, new tools, and productivity hacks. No spam.