mirror of https://github.com/CrimsonTome/tldr.git
20 lines
222 B
Markdown
20 lines
222 B
Markdown
|
# shutdown
|
||
|
|
||
|
> Shutdown and reboot the system
|
||
|
|
||
|
- Power off (halt) immediately
|
||
|
|
||
|
`shutdown -h now`
|
||
|
|
||
|
- Sleep immediately
|
||
|
|
||
|
`shutdown -s now`
|
||
|
|
||
|
- Reboot immediately
|
||
|
|
||
|
`shutdown -r now`
|
||
|
|
||
|
- Reboot in 5 minutes
|
||
|
|
||
|
`shutdown -r +{{5}}`
|