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>&1
GitHub 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: OnFailure
Diğer Popüler Cron Zamanlamaları
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.