Standard POSIX / Crontab Syntax

*/30 * * * *

Every 30 Minutes / Half Hour (*/30 * * * *)” — Runs twice an hour: at minute 0 and minute 30. (Her 30 Dakikada Bir (Yarım Saatte Bir))

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

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

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

Runs twice an hour: at minute 0 and minute 30. In Turkish: Saatte iki kez, 0. ve 30. dakikalarda tetiklenir.