#!/bin/ksh
#
# Script to stop existing test admin.wt application before rebuilding
#
PID=`ps -ef | grep admin.wt | grep -v grep | awk '{print $2}'`
if [ $PID ]
then
  kill $PID
fi
