mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 01:18:00 +01:00
19 lines
245 B
Markdown
19 lines
245 B
Markdown
# shutdown
|
|
|
|
> Shutdown and reboot the system
|
|
|
|
- Power off (halt) immediately
|
|
|
|
`shutdown -h now`
|
|
|
|
- Reboot immediately
|
|
|
|
`shutdown -r now`
|
|
|
|
- Reboot in 5 minutes
|
|
|
|
`shutdown -r +{{5}} &`
|
|
|
|
- Cancel a pending shutdown/reboot operation
|
|
|
|
`shutdown -c`
|