Standard POSIX / Crontab Syntax

0 */6 * * *

Every 6 Hours (0 */6 * * *)” — Runs at 00:00, 06:00, 12:00, and 18:00 every day. (Her 6 Saatte Bir (Günde 4 Kez))

Crontab 5-Field Breakdown
0
Minute
0
*/6
Hour
At 00, 06, 12, 18 (*/6)
*
Day (Month)
Every day (*)
*
Month
Every month (*)
*
Day (Week)
Every day of week (*)
Copy-Paste Integration Snippets
Linux (crontab -e)
0 */6 * * * /usr/bin/python3 /opt/scripts/backup.py >> /var/log/cron.log 2>&1
GitHub Actions Workflow
on:
  schedule:
    - cron: '0 */6 * * *'
Kubernetes (CronJob Spec)
apiVersion: batch/v1
kind: CronJob
metadata:
  name: scheduled-task
spec:
  schedule: "0 */6 * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: runner
            image: alpine
          restartPolicy: OnFailure
Diğer Popüler Cron Zamanlamaları
Frequently Asked Questions

Common Questions About 0 */6 * * * to Cron Syntax

Everything you need to know regarding AST transformations, typing rules, and browser security.

Runs at 00:00, 06:00, 12:00, and 18:00 every day. In Turkish: Günde 4 kez: Gece 00:00, Sabah 06:00, Öğle 12:00 ve Akşam 18:00 saatlerinde çalışır.