0 9 * * 1-5Mon, 06 Apr 2026, 09:00Tue, 07 Apr 2026, 09:00Wed, 08 Apr 2026, 09:00Thu, 09 Apr 2026, 09:00Fri, 10 Apr 2026, 09:00*Any / every value,List separator (1,3,5)-Range (1-5)/Step (*/15)Build, understand, and validate cron expressions visually. Cron is a time-based job scheduler used in Unix-like systems to run commands at fixed intervals — used in CI/CD pipelines, cron jobs, scheduled tasks, AWS EventBridge, GitHub Actions, and more.
A standard cron expression has 5 fields: minute hour day-of-month month day-of-week
For example, 0 9 * * 1-5 means "every weekday at 9:00 AM". Use * for "every", , to list values, - for ranges, and / for steps.