Standard POSIX / Crontab Syntax

*/15 * * * *

Every 15 Minutes (*/15 * * * *)” — Runs at minute 0, 15, 30, and 45 of every hour. (Her 15 Dakikada Bir (Çeyrek Saatte Bir))

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

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

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

Runs at minute 0, 15, 30, and 45 of every hour. In Turkish: Her saatin 0, 15, 30 ve 45. dakikalarında çeyrek saatte bir çalışır.