summaryrefslogtreecommitdiff
path: root/games/uox3/files/uox3.sh
blob: 90978e9a0c61a3f4247638062569f30d49184aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

uox3dir=/usr/local/uox3

case "$1" in
start)
	if [ -x ${uox3dir}/uox3 ]; then
		cd ${uox3dir}
		uox3 > ${uox3dir}/stdout.log &
		echo -n ' uox3'
	fi
	;;
stop)
	killall uox3 && echo -n ' uox3'
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	exit 64
	;;
esac