Cron Expression: 0 9-17 * * *

At minute 0 of every hour from 09:00 to 17:00, every day.

Field Breakdown

FieldValue
Minute0
Hour9-17
Day of Month*
Month*
Day of Week*

Common Use Case

Business-hours processes.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

0 9-17 * * * /path/to/your/script.sh

GitHub Actions (.github/workflows/*.yml)

on:
  schedule:
    - cron: '0 9-17 * * *'

AWS EventBridge (cron format)

cron(0 9-17 * * *)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "0 9-17 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →