Cron Expression Examples
Common crontab schedules with full syntax breakdowns, real-world use cases, and copy-ready expressions. Click any example for a detailed explanation.
Understanding Cron Schedules by Example
Cron expressions can feel cryptic at first glance, but they follow a logical pattern once you understand the five fields: minute, hour, day of month, month, and day of week. The examples below cover the most common scheduling scenarios you will encounter as a developer, system administrator, or DevOps engineer.
Each example includes the full cron expression, a plain-English description, a detailed field breakdown, practical use cases, and platform-specific instructions for Linux, Kubernetes, Docker, and CI/CD systems. Whether you need a job that runs every 5 minutes for cache refreshes or a monthly billing report on the 1st, you will find a ready-to-use expression here.
The examples are organized by frequency: from sub-hourly schedules (every minute through every 30 minutes), to hourly and multi-hour intervals, daily schedules, weekly patterns, and monthly/yearly cadences. Click any card to see the full breakdown with copy-ready syntax for your platform.
Minutes
* * * * *Every Minute
Executes the job every minute of every hour, every day.
*/5 * * * *Every 5 Minutes
Executes the job every 5 minutes.
*/10 * * * *Every 10 Minutes
Executes the job every 10 minutes.
*/15 * * * *Every 15 Minutes
Executes the job every 15 minutes (4 times per hour).
*/30 * * * *Every 30 Minutes
Executes the job every 30 minutes (twice per hour).
Hours
Daily
Weekly
Monthly & Yearly
Need a custom schedule?
Open the Generator