Standard POSIX / Crontab Syntax
0 12 * * 6,0
“Every Weekend at Noon (0 12 * * 6,0)” — Executes Saturday and Sunday at 12:00 PM. (Hafta Sonu Her Öğlen 12:00)
Live Interactive Crontab Translator & Evaluator
Cron Expression Translator & Next Run Schedule
Minute
0-59
Hour
0-23
Day (Month)
1-31
Month
1-12
Day (Week)
0-6 (Sun-Sat)
Human Readable Meaning:
Executes Saturday and Sunday at 12:00 PM.
Hafta sonu Cumartesi ve Pazar öğlen 12:00'de çalışır.
Quick Presets:
Next 5 Scheduled Executions
1.Sun, Sep 20, 12:00
Ready Crontab Line
0 12 * * 6,0 /usr/bin/python3 /opt/scripts/backup.pyCrontab 5-Field Breakdown
0
Minute
0
12
Hour
12
*
Day (Month)
Every day (*)
*
Month
Every month (*)
6,0
Day (Week)
Saturday and Sunday (6,0)
Copy-Paste Integration Snippets
Linux (crontab -e)
0 12 * * 6,0 /usr/bin/python3 /opt/scripts/backup.py >> /var/log/cron.log 2>&1GitHub Actions Workflow
on:
schedule:
- cron: '0 12 * * 6,0'Kubernetes (CronJob Spec)
apiVersion: batch/v1
kind: CronJob
metadata:
name: scheduled-task
spec:
schedule: "0 12 * * 6,0"
jobTemplate:
spec:
template:
spec:
containers:
- name: runner
image: alpine
restartPolicy: OnFailureOther Popular Cron Schedules
* * * * *(Her Dakika Başı)
*/2 * * * *(Her 2 Dakikada Bir)
*/3 * * * *(Her 3 Dakikada Bir)
*/5 * * * *(Her 5 Dakikada Bir)
*/10 * * * *(Her 10 Dakikada Bir)
*/15 * * * *(Her 15 Dakikada Bir (Çeyrek Saatte Bir))
*/20 * * * *(Her 20 Dakikada Bir)
*/30 * * * *(Her 30 Dakikada Bir (Yarım Saatte Bir))
*/45 * * * *(Her 45 Dakikada Bir)
Frequently Asked Questions
Common Questions About 0 12 * * 6,0 to Cron Syntax
Everything you need to know regarding specifications, syntax, and security best practices.
Executes Saturday and Sunday at 12:00 PM. In Turkish: Hafta sonu Cumartesi ve Pazar öğlen 12:00'de çalışır.