Skip to content
CronChief

Cron expression for every minute

Five asterisks — * * * * * — is the most frequent schedule standard cron allows: the job runs once every minute, of every hour, of every day, forever.

In plain English: “Every minute”

Field breakdown

Minute *
Hour *
Day of month *
Month *
Day of week *

Next run times (UTC)

  1. Mon, Jul 6, 2026 · 3:58 AM UTC in 38 sec
  2. Mon, Jul 6, 2026 · 3:59 AM UTC in 1 minute
  3. Mon, Jul 6, 2026 · 4:00 AM UTC in 2 minutes
  4. Mon, Jul 6, 2026 · 4:01 AM UTC in 3 minutes
  5. Mon, Jul 6, 2026 · 4:02 AM UTC in 4 minutes

See these in your own timezone.

When to use it

Related schedules

Good to know

  • This is the ceiling for classic 5-field cron. For sub-minute intervals you need a scheduler with a seconds field (6-field), such as Quartz or Cronos.
  • If the job can take longer than a minute, cron will happily start a second copy on top of the first. Guard long jobs with a lock (e.g. flock) to prevent overlap.