Business & Reporting
Weekdays at 10:15 AM
Daily status update. This page shows you how to implement this cron schedule with detailed examples and execution times.
1
Runs per day
10
Next executions
13
Expression length
Cron Expression
15 10 * * 1-5
Human Readable
Every weekday at 10:15 AM
Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 15 | When during the hour (0-59) |
| Hour | 10 | What hour of the day (0-23) |
| Day | * | What day of the month (1-31) |
| Month | * | What month (1-12) |
| Day of Week | 1-5 | What day of the week (0-7, 0=Sunday) |
Next 10 Execution Times
2026-07-28 10:15:00 UTC
2026-08-04 10:15:00 UTC
2026-08-11 10:15:00 UTC
2026-08-18 10:15:00 UTC
2026-08-25 10:15:00 UTC
2026-09-01 10:15:00 UTC
2026-09-08 10:15:00 UTC
2026-09-15 10:15:00 UTC
2026-09-22 10:15:00 UTC
2026-09-29 10:15:00 UTC
Note: Times shown in UTC. Adjust for your local timezone as needed.
Implementation Examples
Linux Crontab
15 10 * * 1-5 /path/to/your/script.sh
Add this line to your crontab file using crontab -e
Docker Compose
services:
cron-job:
image: your-app:latest
command: |
sh -c 'echo "15 10 * * 1-5 /app/script.sh" | crontab - && crond -f'
Kubernetes CronJob
apiVersion: batch/v1
kind: CronJob
metadata:
name: weekdays-at-1015-am
spec:
schedule: "15 10 * * 1-5"
jobTemplate:
spec:
template:
spec:
containers:
- name: job
image: your-app:latest
command: ["/app/script.sh"]
restartPolicy: OnFailure
GitHub Actions
name: Weekdays at 10:15 AM
on:
schedule:
- cron: '15 10 * * 1-5'
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run task
run: ./script.sh
Common Use Cases
Daily status update
- • Automated business reports
- • Sales and analytics summaries
- • Team notifications and updates
- • Monthly and quarterly reviews
Test This Expression
Use our free cron tools to test and validate this expression:
Learn More About Cron
Understand the syntax and patterns behind this expression:
More Business & Reporting Examples
Every Monday at 9 AM
Weekly business report
0 9 * * 1
First day of month at 8 AM
Monthly sales report
0 8 1 * *
Every Friday at 5:30 PM
Weekly summary
30 17 * * 5
First day every 3 months at 6 AM
Quarterly report
0 6 1 */3 *
Every Monday at 7 AM
Weekly planning report
0 7 * * 1
Last days of month at 4:30 PM
Month-end report
30 16 28-31 * *