Developers

Cron Parser

Parse Cron expressions and view execution schedule

Cron Parser
Minute
*
Hour
*
Day of Month
*
Month
*
Day of Week
*
Enter a Cron expression to parse
Next scheduled runs
Cron Builder
* * * * *
Common Expressions
Symbol Reference
مساحة إعلانية
About this Tool

Cron Parser — Understand and Build Cron Expressions Easily

Cron is the Linux/Unix task scheduler used to automatically run commands and scripts at specific times. This tool helps you read, analyze, and build Cron expressions in plain human language.

Cron Expression Structure

A standard Cron expression has 5 space-separated fields:

┌─ minute (0-59)
│ ┌─ hour (0-23)
│ │ ┌─ day of month (1-31)
│ │ │ ┌─ month (1-12)
│ │ │ │ ┌─ day of week (0-7, Sun=0 or 7)
* * * * *

Practical Examples

  • 0 2 * * * — every day at 2:00 AM (daily backup)
  • */5 * * * * — every 5 minutes (server monitoring)
  • 0 9 * * 1-5 — every weekday at 9:00 AM
  • 0 0 1 * * — first day of every month at midnight
  • @hourly — shorthand for 0 * * * *
  • @daily — shorthand for 0 0 * * *
مساحة إعلانية