Debian logo [inetdoc.LINUX]

(24/29)
Planification des tâches
Démon cron
Commande run-parts
Exécution des scripts présents dans un répertoire Périodicité
Horaire /etc/cron.hourly
Quotidienne /etc/cron.daily
Hebdomadaire /etc/cron.weekly
Mensuelle /etc/cron.monthly
Exemple de script
$ cat /etc/cron.weekly/man-db
#!/bin/sh
#
# Last modification: Fri, 18 May 2001 13:54:15 +0100 # man-db cron weekly

# regenerate man database
if [ -x /usr/bin/mandb ]; then

nice su man -c 'mandb 2>/dev/null >/dev/null' fi