Crontab Generator & Translator

Translate cron expressions to plain English and calculate the next execution dates.

Minute Hour Day (Month) Month Day (Week)
Every minute

About Cron Jobs

What is Cron?

Cron is the time-based job scheduler built into Linux and Unix systems. It runs in the background and executes commands, scripts, or programs automatically at specified intervals (like every night at 2:00 AM).

The Syntax

A standard crontab expression contains 5 parts separated by spaces. You can use wildcards (* for "every"), lists (1,15), ranges (1-5), and steps (*/5 for "every 5").

Frequently Asked Questions

Why is my cron job not running?

The most common issue is timezone confusion. Cron jobs on servers usually run in UTC time, not your local time. Always check your server's timezone (date command in Linux) and adjust your expression accordingly.

Does this tool use a server to calculate dates?

No. Both the English translation and the highly complex "Next 5 Executions" date mathematics are handled 100% locally in your web browser via our custom algorithm. It is instantaneous and completely private.