blob: 70d18fbdf9dce264c6c1505872ef534027d9c7a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Name
shutdown - Power off the machine
## Synopsis
```**sh
$ shutdown
```
## Description
`shutdown` instructs the kernel to power off the machine immediately.
## Notes
The `shutdown` utility opens the `/sys/firmware/power_state` node and writes the magic value "2"
to instruct the kernel to power off the machine.
|