Standard POSIX / Crontab Syntax
*/45 * * * *
βEvery 45 Minutes (*/45 * * * *)β β Executes at minute 0 and 45 of each hour. (Her 45 Dakikada Bir)
Live Interactive Crontab Translator & Evaluator
Cron Expression Translator & Next Run Schedule
Minute
0-59
Hour
0-23
Day (Month)
1-31
Month
1-12
Day (Week)
0-6 (Sun-Sat)
Human Readable Meaning:
Executes at minute 0 and 45 of each hour.
Her 45 dakikada bir tetiklenir.
Quick Presets:
Next 5 Scheduled Executions
1.Sun, Sep 20, 00:00
2.Sun, Sep 20, 00:45
3.Sun, Sep 20, 01:00
4.Sun, Sep 20, 01:45
5.Sun, Sep 20, 02:00
Ready Crontab Line
*/45 * * * * /usr/bin/python3 /opt/scripts/backup.pyCrontab 5-Field Breakdown
*/45
Minute
At minute 0 and 45 (*/45)
*
Hour
Every hour (*)
*
Day (Month)
Every day (*)
*
Month
Every month (*)
*
Day (Week)
Every day of week (*)
Copy-Paste Integration Snippets
Linux (crontab -e)
*/45 * * * * /usr/bin/python3 /opt/scripts/backup.py >> /var/log/cron.log 2>&1GitHub Actions Workflow
on:
schedule:
- cron: '*/45 * * * *'Kubernetes (CronJob Spec)
apiVersion: batch/v1
kind: CronJob
metadata:
name: scheduled-task
spec:
schedule: "*/45 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: runner
image: alpine
restartPolicy: OnFailureOther Popular Cron Schedules
* * * * *(Her Dakika BaΕΔ±)
*/2 * * * *(Her 2 Dakikada Bir)
*/3 * * * *(Her 3 Dakikada Bir)
*/5 * * * *(Her 5 Dakikada Bir)
*/10 * * * *(Her 10 Dakikada Bir)
*/15 * * * *(Her 15 Dakikada Bir (Γeyrek Saatte Bir))
*/20 * * * *(Her 20 Dakikada Bir)
*/30 * * * *(Her 30 Dakikada Bir (YarΔ±m Saatte Bir))
0 * * * *(Her Saat BaΕΔ±)
Frequently Asked Questions
Common Questions About */45 * * * * to Cron Syntax
Everything you need to know regarding specifications, syntax, and security best practices.
Executes at minute 0 and 45 of each hour. In Turkish: Her 45 dakikada bir tetiklenir.