o
A crontab expression defines when something should run. Describe it below with AI in one sentence, pick a template or fill in the five fields yourself. The result appears right underneath, in plain words and with the next run times.
Write in one sentence when the cronjob should run. An AI suggests the matching crontab expression, which you can then check and change.
Click something close to what you need and fine-tune it below.
An asterisk means every value. You can also use single numbers like 5, lists like 1,15,30, ranges like 9-17 and steps like */15.
The part after the schedule is the command. > /dev/null 2>&1 discards the output, otherwise cron mails it to you. At Cronjob.de you do not need this: there you only enter the address.
| Input | Meaning |
|---|---|
* | Every value. |
5 | Exactly this one value. |
1,15,30 | Several individual values. |
9-17 | A range, both bounds included. |
*/15 | Every 15th value, counted from the lowest. |
10-40/10 | Step within a range: 10, 20, 30, 40. |
In the day-of-week field, 0 and 7 both mean Sunday. The characters L, W, ? and # are not part of Unix cron and are not accepted here.
Full crontab reference including pitfalls · Use this expression at Cronjob.de