Qui n’a jamais eu un doute lors de la création d’une entrée dans la crontab ?
Après les colonnes minute et heure, c’est d’abord le jour du mois, ou le numéro du mois ?
man crontab
ne donne PAS la réponse.
Mais la commande man 5 crontab
la donne.
5 pour “Formats des fichiers et conventions.”
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# m h dom mon dow usercommand
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report ...