cron.wtf › common expressions
Click any expression to see what it means, its next run times, and a field breakdown. Or build your own with the generator.
| * * * * * | Runs every minute. |
| */5 * * * * | Runs every 5 minutes. |
| */10 * * * * | Runs every 10 minutes. |
| */15 * * * * | Runs every 15 minutes. |
| */30 * * * * | Runs every 30 minutes. |
| 0 * * * * | Runs every hour at minute 0 past. |
| 0 */2 * * * | Runs every 2 hours. |
| 0 */6 * * * | Runs every 6 hours. |
| 0 0 * * * | Runs at 12:00am. |
| 0 12 * * * | Runs at 12:00pm. |
| 30 9 * * * | Runs at 9:30am. |
| 0 9 * * 1-5 | Runs at 9:00am, on Monday, Tuesday, Wednesday, Thursday, and Friday. |
| 0 0 * * 0 | Runs at 12:00am, on Sunday. |
| 0 0 * * 1 | Runs at 12:00am, on Monday. |
| 0 0 1 * * | Runs at 12:00am, on the 1st of the month. |
| 0 0 1 1 * | Runs at 12:00am, on the 1st of the month, in January. |
| 0 0 * * 6 | Runs at 12:00am, on Saturday. |
| 15 3 * * * | Runs at 3:15am. |
| 0 22 * * 1-5 | Runs at 10:00pm, on Monday, Tuesday, Wednesday, Thursday, and Friday. |
| */5 9-17 * * 1-5 | Runs every 5 minutes during 9am–5pm, on Monday, Tuesday, Wednesday, Thursday, and Friday. |
| @daily | Runs at 12:00am. |
| @hourly | Runs every hour at minute 0 past. |
| @weekly | Runs at 12:00am, on Sunday. |
| @monthly | Runs at 12:00am, on the 1st of the month. |