#!/bin/sh
#
# UDP Search....
#  support MiniOS7 Utility and VxComm Utility
#

case "$1" in
  start)
 	echo "Starting udpSearch.exe"
 	/icpdas/udpSearch/udpSearch.exe &

	;;
  stop)
	echo -n "Stopping udpSearch.exe"
	/usr/bin/killall -9 udpSearch.exe
	
	;;
  restart|reload)
	"$0" stop
	"$0" start
	;;
  *)
	echo $"Usage: $0 {start|stop|restart}"
	exit 1
esac

exit $?

