tools / cron expressions / how to run a cron job every 10 minutes
cron expression · plain english

Cron every 10 minutes

Fires at minutes 00, 10, 20, 30, 40, 50 of every hour. Common cadence for heavier polling jobs that don't need 5-min granularity.

beginner POSIX / Jenkins / Quartz / AWS
*/10 * * * *
cron every 10 minutes.

Next 5 fire times

Computed live in your local timezone. The cron expression itself is timezone-agnostic — these times reflect your browser clock.

computing…

Cross-system syntax variants

Same intent, different schedulers. Use this table when migrating between systems.

SystemExpressionNote
Standard cron (POSIX)*/10 * * * *fires at HH:00, HH:10, HH:20, HH:30, HH:40, HH:50
JenkinsH/10 * * * *H/10 picks one offset and uses it consistently
Quartz (Java)0 0/10 * * * ?6 fires per hour, stable schedule
AWS EventBridgerate(10 minutes)wallclock-aligned; use cron(0/10 * * * ? *) if you need minute-alignment

Common pitfalls

Use cases

Translate any cron expression
cronwtf takes any cron string and returns plain-English description plus the next 5 fire times in your timezone. Standard 5-field, Jenkins H, Quartz 6-field — all supported.
Open cronwtf  

Related cron schedules

cron every 30 minutes (half-hourly) · cron twice daily (midnight and noon) · cron on the first day of every month · cron: every minute