DevToolBoxGRATUIT
Blog

Planificateur de Taches Cron

Planifiez des taches cron avec un editeur visuel interactif. Apercu des prochaines executions et code specifique a chaque plateforme.

Planification rapide

Expression personnalisee

Expression Cron
* * * * *
Description du planning

Every minute

10 prochaines executions

#1Wed, Feb 25, 2026, 21:55
#2Wed, Feb 25, 2026, 21:56
#3Wed, Feb 25, 2026, 21:57
#4Wed, Feb 25, 2026, 21:58
#5Wed, Feb 25, 2026, 21:59
#6Wed, Feb 25, 2026, 22:00
#7Wed, Feb 25, 2026, 22:01
#8Wed, Feb 25, 2026, 22:02
#9Wed, Feb 25, 2026, 22:03
#10Wed, Feb 25, 2026, 22:04

Heures affichees dans votre fuseau horaire local. Les taches cron sur les serveurs fonctionnent generalement en UTC.

Exemples par plateforme

Linux crontab
# Edit with: crontab -e
* * * * * /path/to/script.sh
GitHub Actions
on:
  schedule:
    - cron: '* * * * *'
AWS CloudWatch Events
# AWS uses 6 fields (adds year) and ? for day-of-month/day-of-week
cron(* * * * ? *)
Kubernetes CronJob
apiVersion: batch/v1
kind: CronJob
metadata:
  name: my-cronjob
spec:
  schedule: "* * * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: my-job
            image: busybox
            command: ["/bin/sh", "-c", "echo Hello"]

Reference des planifications Cron courantes

ExpressionDescription
* * * * *Every minute
*/2 * * * *Every 2 minutes
*/5 * * * *Every 5 minutes
*/10 * * * *Every 10 minutes
*/15 * * * *Every 15 minutes
*/30 * * * *Every 30 minutes
0 * * * *Every hour
0 */2 * * *Every 2 hours
0 */6 * * *Every 6 hours
0 */12 * * *Every 12 hours
0 0 * * *Daily at midnight
0 6 * * *Daily at 6 AM
0 12 * * *Daily at noon
0 18 * * *Daily at 6 PM
0 9 * * 1-5Weekdays at 9 AM
0 0 * * 0Weekly on Sunday
0 9 * * 1Weekly on Monday 9 AM
0 0 1 * *Monthly on the 1st
0 0 15 * *Monthly on the 15th
0 0 1 1 *Yearly on January 1st
0 0 1 */3 *Every quarter (1st)
30 4 * * *Daily at 4:30 AM

Questions frequentes

Comment planifier une tache cron ?
Sur Linux/macOS, executez "crontab -e" pour ouvrir l'editeur, puis ajoutez une ligne avec 5 champs de temps suivis de la commande.
Cron vs Planificateur de taches Windows ?
Cron est le planificateur Unix/Linux utilisant des expressions a 5 champs. Le Planificateur Windows utilise une interface graphique.
Quelle est la frequence maximale de cron ?
Le cron standard prend en charge un intervalle minimum de 1 minute (* * * * *). Pour une planification inferieure a la minute, utilisez des minuteries systemd ou fcron.

Outils Cron associes

𝕏 Twitterin LinkedIn

Notez cet outil

4.4 / 5 · 207 avis

Restez informé

Recevez des astuces dev et les nouveaux outils chaque semaine.

Pas de spam. Désabonnez-vous à tout moment.

Enjoy these free tools?

☕Buy Me a Coffee