TL
Tool Lab
πŸ’°Donate
πŸ’°Donate

Cron Next Run Calculator

Parse cron expressions and preview the next scheduled run times.

0Minute (0-59)
9Hour (0-23)
*Day of Month (1-31)
*Month (1-12)
1-5Day of Week (0-6, Sun=0)

About This Tool

The Cron Next Run Calculator parses a standard 5-field cron expression (minute hour day-of-month month day-of-week) and shows the next scheduled execution times from now.

It supports all standard cron syntax: wildcards (*), step values (*/5), ranges (1-5), and lists (1,3,5). Results are shown in your local browser timezone.

How to Use

  1. Enter a 5-field cron expression, or click a preset.
  2. Select how many upcoming runs to show.
  3. Click Calculate to see the next run times in your local timezone.

Cron Syntax Reference

Format: minute hour day-of-month month day-of-week. * = any Β· */n = every n Β· n-m = range Β· n,m = list

FAQ

  • Does this use my local timezone? β€” Yes. Results are displayed in your browser's local timezone.
  • Are seconds supported? β€” No. This tool uses the standard 5-field cron format (no seconds field).
  • What does */5 mean? β€” */5 means "every 5 units". For example, */5 in the minute field means the job runs at minute 0, 5, 10, 15, … of every hour.