← cron expression builder

Cron: every minute (* * * * *)

The cron expression * * * * * runs a job every minute — here's exactly what each field means and how to use it.

* * * * *
In plain English: Runs once every minute — 60 times an hour. Handy for near-real-time polling while developing, but usually too frequent for production; prefer a queue or a longer interval.
FieldValueMeans
Minute*every minute
Hour*every hour
Day of month*every day
Month*every month
Day of week*every day
# crontab -e, then add: * * * * * /path/to/your-script.sh # GitHub Actions (.github/workflows/*.yml): on: schedule: - cron: "* * * * *"
Need a different schedule? Open the interactive cron builder →

Notes

A cron expression has five fields — minute, hour, day-of-month, month, day-of-week — each accepting a number, * (every), */n (every n), a list (1,15) or a range (1-5). Day-of-week runs Sunday=0 to Saturday=6.

Note on timezone: plain cron runs in the server's local time. GitHub Actions cron always runs in UTC — convert your intended local time before setting it.

Other schedules: every 5 minutes · every 10 minutes · every 15 minutes · every 30 minutes · every hour · every 2 hours · every 6 hours · every 12 hours · every day at midnight · every day at noon

Frequently asked questions

What does the cron expression "* * * * *" mean?

* * * * * runs every minute. Runs once every minute — 60 times an hour. Handy for near-real-time polling while developing, but usually too frequent for production; prefer a queue or a longer interval.

How do I add "* * * * *" to crontab?

Run crontab -e and add a line: * * * * * /path/to/script.sh — then save. Use crontab -l to confirm it's installed.

Does "* * * * *" run in UTC or local time?

System cron uses the server's local timezone; GitHub Actions and most CI schedulers use UTC. Adjust the hour field for the timezone difference.

Found this useful? 113 free, browser-only tools by Yuvrajsinh Jadav — an engineer who ships production AI systems. No account, nothing sent anywhere.