Standard POSIX / Crontab Syntax

*/10 * * * *

Every 10 Minutes (*/10 * * * *)” — Runs every 10 minutes at the top of the 10-minute mark. (Her 10 Dakikada Bir)

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

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

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

Runs every 10 minutes at the top of the 10-minute mark. In Turkish: Her 10 dakikada bir otomatik olarak tetiklenir.