suse@linux-337q:~> ls -l /sbin/shutdown
lrwxrwxrwx 1 root root 18 4 月 3 12:42 /sbin/shutdown -> /usr/bin/systemctl
suse@linux-337q:~> /sbin/shutdown --help | grep "\-h"
--help Show this help
-H --halt Halt the machine
-h Equivalent to --poweroff, overridden by --halt
suse@linux-337q:~> systemctl --help | grep "\-h"
-h --help Show this help
-H --host=[USER@]HOST
看见了吧 shutdown 实际只是 systemctl 的链接。那么为什么 shutdown -h 和 systemctl -h 不一样呢?