Crontab.dev
An online cron editor for schedule expression.
“At 00:00”
General Instructions
Value | Description |
---|---|
@reboot | Run once after reboot. |
@yearly | Run once a year, ie. "0 0 1 1 *" |
@annually | Run once a year, ie. "0 0 1 1 *" |
@monthly | Run once a month, ie. "0 0 1 * *" |
@weekly | Run once a week, ie. "0 0 * * 0" |
@daily | Run once a day, ie. "0 0 * * *" |
@hourly | Run once an hour, ie. "0 * * * *" |
* | Any value (e.g. any hour) |
, | List of values (e.g. 1,2) |
- | Range of values (e.g. 1-4) |
/ | Step (e.g. */8 for any 8th) |