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

uox3dir=/usr/local/uox3

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