About man shutdown at:
it indicates:
...
-H, --halt
Halt the machine.
-P, --poweroff
Power-off the machine (the default).
-r, --reboot
Reboot the machine.
-h
Equivalent to --poweroff, unless --halt is specified.
...
Therefore the two following commands are the same (taking in consideration the default time about from now that is +1)
shutdown
shutdown -P
But what about shutdown -h?
Question
- When is useful the
-hoption? or How does-hwork?