Vous voulez éditer votre fichier crontab en utilisant
crontab -e
Ensuite, vous voulez ajouter
55 23 * * * COMMAND TO BE EXECUTED
pour plus d'informations, regardez ceci
Je suis tout sauf un expert Linux, mais une recherche rapide sur Google m'a donné ceci :
watch -n <your time> <your command/script>
Cela devrait faire l'affaire. Pour plus d'informations, consultez ceci :http://www.linfo.org/watch.html
Pour ajouter une tâche crontab, saisissez la commande suivante à l'invite du shell UNIX/Linux :
$ sudo crontab -e
Ajoutez la ligne suivante :
1 2 3 4 5 /path/to/script
où
1: Minutes (0-59)
2: Hours (0-23)
3: Days (1-31)
4: Month (1-12)
5: Day of the week(1-7)
/path/to/script - your own shell script
Dans votre cas, ce serait :
55 23 * * * /path/to/yourShellScript