Easy scheduler

Describe when it should run.

Answer a few questions and get a working cron expression — plus the actual dates it will fire, so you can check it before trusting it.

How often?

At what time?

Your schedule

Runs every day at 9:00 AM

Cron expression

0 9 * * *
0
Minute
9
Hour
*
Day of month
*
Month
*
Day of week

That's the whole format: five values, always in this order. An * means "no restriction here".

It would next run

Tue, Jul 28, 9:00 AMin 3h 17m
Wed, Jul 29, 9:00 AMin 1 day
Thu, Jul 30, 9:00 AMin 2 days
Fri, Jul 31, 9:00 AMin 3 days
Sat, Aug 1, 9:00 AMin 4 days

Real times, calculated the same way cron itself would, in your browser's timezone.

Using it

  1. 1. Copy the expression above.
  2. 2. Run crontab -e on your server.
  3. 3. Add a line: the expression, a space, then the command to run.

Want ranges, steps, or odd combinations? Open the advanced builder — it takes the same expression.