Cron Expression: Five times a day at 6 AM, 10 AM, 2 PM, 6 PM, and 10 PM
Cron Expression
0 6,10,14,18,22 * * *Five times a day at 6 AM, 10 AM, 2 PM, 6 PM, and 10 PM
Click the expression to select it, then copy.
Quick Answer
The cron expression for "five times a day at 6 am, 10 am, 2 pm, 6 pm, and 10 pm" is `0 6,10,14,18,22 * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | At minute 0 |
| Hour | 6,10,14,18,22 | At hour values: 6,10,14,18,22 |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →High-frequency daily reports
- →Five-point daily sync
- →Regular interval notifications
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "0 6,10,14,18,22 * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '0 6,10,14,18,22 * * *'Linux crontab
0 6,10,14,18,22 * * * /path/to/your-command.sh