phunix/commands/scripts/poweroff.sh
David van Moolenbroek 12a01e8f01 poweroff(8) aesthetics
2009-06-12 13:13:29 +00:00

16 lines
218 B
Bash

#!/bin/sh
#
# poweroff 1.0 - power off the system Author: David van Moolenbroek
# 12 Jun 2009
if [ $# -gt 0 ]; then
echo "usage: poweroff" >&2
exit 1
fi
PATH=/usr/bin:$PATH
trap "" 15
shutdown -x off