#!/bin/sh
#  裡  

case "$1" in
start)
	cd /gsw
	./tps &
	;;
stop)
	killall tps
	;;
restart)
	killall tps
	cd /gsw
	./tps &
	;;
*)
	echo "Usage: $0 { start | stop | restart }"
	;;
esac

exit 0
