Quiere editar su archivo crontab usando
crontab -e
Entonces quieres agregar
55 23 * * * COMMAND TO BE EXECUTED
para más información mira esto
Soy cualquier cosa, menos un experto en Linux, pero una búsqueda rápida en Google evocó esto:
watch -n <your time> <your command/script>
Esto debería funcionar. Para obtener más información, consulta esto:http://www.linfo.org/watch.html
Para agregar un trabajo crontab, escriba el siguiente comando en un indicador de shell de UNIX/Linux:
$ sudo crontab -e
Agregue la siguiente línea:
1 2 3 4 5 /path/to/script
donde
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
En tu caso sería:
55 23 * * * /path/to/yourShellScript