mirror of https://github.com/CrimsonTome/tldr.git
25 lines
365 B
Markdown
25 lines
365 B
Markdown
# shutdown
|
|
|
|
> Shutdown and reboot the system.
|
|
> More information: <https://manned.org/shutdown.8>.
|
|
|
|
- Power off (halt) immediately:
|
|
|
|
`shutdown -h now`
|
|
|
|
- Reboot immediately:
|
|
|
|
`shutdown -r now`
|
|
|
|
- Reboot in 5 minutes:
|
|
|
|
`shutdown -r +{{5}} &`
|
|
|
|
- Shutdown at 1:00 pm (Uses 24h clock):
|
|
|
|
`shutdown -h 13:00`
|
|
|
|
- Cancel a pending shutdown/reboot operation:
|
|
|
|
`shutdown -c`
|