Standard POSIX / Crontab Syntax

*/5 * * * *

Every 5 Minutes (*/5 * * * *)” — Runs every 5th minute (0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55). (Her 5 Dakikada Bir)

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

Common Questions About */5 * * * * to Cron Syntax

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

Runs every 5th minute (0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55). In Turkish: Her 5 dakikada bir düzenli aralıklarla çalışır.