freebsd-ports/games/tetrinet-x/files/tetrinet-x.sh

19 lines
328 B
Bash
Raw Normal View History

#!/bin/sh
tetrixdir=/usr/local/tetrinet-x
tetrix=tetrix.freebsd
case "$1" in
start)
[ -x ${tetrixdir}/${tetrix} ] && cd ${tetrixdir} && \
${tetrixdir}/${tetrix} > /dev/null && echo -n ' tetrinet-x'
;;
stop)
killall ${tetrix} && echo -n ' tetrinet-x'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac