En el siguiente comando de Terminal sudo shutdown -r now
, hay un tiempo establecido ("... now"). ¿Hay una manera de establecer un tiempo específico.
Por ejemplo, ¿podría ser sudo shutdown -r -int 1200
?
En el siguiente comando de Terminal sudo shutdown -r now
, hay un tiempo establecido ("... now"). ¿Hay una manera de establecer un tiempo específico.
Por ejemplo, ¿podría ser sudo shutdown -r -int 1200
?
Desde man shutdown
:
-r The system is rebooted at the specified time.
[...]
time Time is the time at which shutdown will bring the system down and may be the word now
(indicating an immediate shutdown) or specify a future time in one of two formats:
+number, or yymmddhhmm, where the year, month, and day may be defaulted to the current
system values. The first form brings the system down in number minutes and the second
at the absolute time specified.
Puede encontrar más información en “ Cómo para apagar Linux en una fecha y hora específica desde el terminal? ”en Unix & Linux Stack Exchange y la página de manual específica de OS X .