Vuoi modificare il tuo file crontab usando
crontab -e
Quindi vuoi aggiungere
55 23 * * * COMMAND TO BE EXECUTED
per maggiori informazioni guarda questo
Sono tutt'altro che un esperto di Linux, ma una rapida ricerca su Google ha evocato questo:
watch -n <your time> <your command/script>
Questo dovrebbe fare il trucco. Per ulteriori informazioni, controlla questo:http://www.linfo.org/watch.html
Per aggiungere un processo crontab, digita il seguente comando al prompt della shell UNIX/Linux:
$ sudo crontab -e
Aggiungi la seguente riga:
1 2 3 4 5 /path/to/script
dove
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
Nel tuo caso sarebbe:
55 23 * * * /path/to/yourShellScript