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>&1GitHub 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: OnFailureDiğer Popüler Cron Zamanlamaları
* * * * *(Her Dakika Başı)
*/5 * * * *(Her 5 Dakikada Bir)
*/15 * * * *(Her 15 Dakikada Bir (Çeyrek Saatte Bir))
*/30 * * * *(Her 30 Dakikada Bir (Yarım Saatte Bir))
0 * * * *(Her Saat Başı)
0 */2 * * *(Her 2 Saatte Bir)
0 */6 * * *(Her 6 Saatte Bir (Günde 4 Kez))
0 */12 * * *(Her 12 Saatte Bir (Günde 2 Kez))
0 0 * * *(Her Gece Yarısı (00:00))
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.