echo "System shut-down macro.
This macro brings down Xenix, use
	^D
or
	kill -9 $$
if you just want to log yourself off.
"

echo "Do you really want to shut the system down?"
read ENTRY
if test $ENTRY = "y"
then
	sync
	shutdown
fi
