Tools
Back to Home

Cron Expression Explainer

Parse and explain cron expressions with next scheduled run times

Minute
0
Hour
0
Day of Month
*
Month
*
Day of Week
*

Explanation

at 00, at 00

Next Scheduled Runs

  • 1Sat, Jan 31, 2026, 00:00
  • 2Sun, Feb 1, 2026, 00:00
  • 3Mon, Feb 2, 2026, 00:00
  • 4Tue, Feb 3, 2026, 00:00
  • 5Wed, Feb 4, 2026, 00:00

Common Examples

Cron Fields

FieldRangeDescription
Minute0-59The minute the command will run (0-59)
Hour0-23The hour the command will run (0-23)
Day of Month1-31The day of the month the command will run (1-31)
Month1-12The month the command will run (1-12)
Day of Week0-6The day of the week the command will run (0-6, Sunday=0)

Special Characters

*
Asterisk (*)
Matches any value in the field
,
Comma (,)
Specifies a list of values (e.g., 1,3,5)
-
Hyphen (-)
Specifies a range of values (e.g., 1-5)
/
Slash (/)
Specifies step values (e.g., */15 for every 15)