7 lines
No EOL
109 B
Bash
Executable file
7 lines
No EOL
109 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$1" == "reboot" ]; then
|
|
/sbin/reboot
|
|
elif [ "$1" == "poweroff" ]; then
|
|
/sbin/poweroff
|
|
fi |