Standard POSIX / Crontab Syntax
0 0 * * 0
“Every Sunday at Midnight (0 0 * * 0)” — Runs once a week on Sunday at 00:00. (Her Pazar Gece Yarısı)
Crontab 5-Field Breakdown
0
Minute
0
0
Hour
0
*
Day (Month)
Every day (*)
*
Month
Every month (*)
0
Day (Week)
Sunday (0)
Copy-Paste Integration Snippets
Linux (crontab -e)
0 0 * * 0 /usr/bin/python3 /opt/scripts/backup.py >> /var/log/cron.log 2>&1GitHub Actions Workflow
on:
schedule:
- cron: '0 0 * * 0'Kubernetes (CronJob Spec)
apiVersion: batch/v1
kind: CronJob
metadata:
name: scheduled-task
spec:
schedule: "0 0 * * 0"
jobTemplate:
spec:
template:
spec:
containers:
- name: runner
image: alpine
restartPolicy: OnFailureDiğer Popüler Cron Zamanlamaları
* * * * *(Her Dakika Başı)
*/5 * * * *(Her 5 Dakikada Bir)
*/10 * * * *(Her 10 Dakikada Bir)
*/15 * * * *(Her 15 Dakikada Bir (Çeyrek Saatte Bir))
*/30 * * * *(Her 30 Dakikada Bir (Yarım Saatte Bir))
0 * * * *(Her Saat Başı)
0 */2 * * *(Her 2 Saatte Bir)
0 */6 * * *(Her 6 Saatte Bir (Günde 4 Kez))
0 */12 * * *(Her 12 Saatte Bir (Günde 2 Kez))
Frequently Asked Questions
Common Questions About 0 0 * * 0 to Cron Syntax
Everything you need to know regarding AST transformations, typing rules, and browser security.
Runs once a week on Sunday at 00:00. In Turkish: Haftada bir kez, Pazar günleri gece yarısı 00:00 saatinde çalışır.