Cron: Every 6 hours (0 */6 * * *)
Plain-English meaning, run times, and visual editor for the 0 */6 * * * cron schedule. No sign-up required.
What does 0 */6 * * * mean?
The cron expression 0 */6 * * * translates to “At minute 0, every 6 hours”. It is one of the most commonly used schedules (every 6 hours).
The `*/6` hour step with minute 0 fires four times a day - at 00:00, 06:00, 12:00 and 18:00 - splitting the day into clean six-hour quarters. This cadence suits work that should happen a few times daily but not every hour: nightly-ish reports you want more than once, data refreshes across time zones, or maintenance windows. Four runs a day keeps costs and noise low while still catching changes within a quarter of a day. Remember cron uses the server clock (UTC on most hosts), so those quarters may not line up with your local morning and evening.
Use the builder above to tweak this expression and instantly see how the description and the next run times change.
Example runs from Jan 1, 2026 (UTC)
- Thu Jan 01 2026, 06:00 UTC
- Thu Jan 01 2026, 12:00 UTC
- Thu Jan 01 2026, 18:00 UTC
- Fri Jan 02 2026, 00:00 UTC
- Fri Jan 02 2026, 06:00 UTC
Related cron expressions
Frequently Asked Questions
About cron expressions and this generator.
It triggers four times a day: at midnight (00:00), 06:00, 12:00, and 18:00.
Use "0 2/6 * * *" to trigger at 2:00, 8:00, 14:00, and 20:00.