Standard POSIX / Crontab Syntax
0 */12 * * *
“Every 12 Hours (0 */12 * * *)” — Runs twice a day: at midnight (00:00) and noon (12:00). (Her 12 Saatte Bir (Günde 2 Kez))
Crontab 5-Field Breakdown
0
Minute
0
*/12
Hour
At 00:00 and 12:00 (*/12)
*
Day (Month)
Every day (*)
*
Month
Every month (*)
*
Day (Week)
Every day of week (*)
Copy-Paste Integration Snippets
Linux (crontab -e)
0 */12 * * * /usr/bin/python3 /opt/scripts/backup.py >> /var/log/cron.log 2>&1GitHub Actions Workflow
on:
schedule:
- cron: '0 */12 * * *'Kubernetes (CronJob Spec)
apiVersion: batch/v1
kind: CronJob
metadata:
name: scheduled-task
spec:
schedule: "0 */12 * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: runner
image: alpine
restartPolicy: OnFailureDiğer Popüler Cron Zamanlamaları
* * * * *(Her Dakika Başı)
*/5 * * * *(Her 5 Dakikada Bir)
*/10 * * * *(Her 10 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 0 * * *(Her Gece Yarısı (00:00))
Frequently Asked Questions
Common Questions About 0 */12 * * * to Cron Syntax
Everything you need to know regarding AST transformations, typing rules, and browser security.
Runs twice a day: at midnight (00:00) and noon (12:00). In Turkish: Günde 2 kez: Gece yarısı (00:00) ve Öğlen (12:00) çalışır.