#! /usr/bin/ksh
#####################################################################
# function: killIUTleftOver
#
# description of the function:
# ----------------------------
#    Kills any left over processes from RunUTnIUT script. 
#
# Input to the function:
# ----------------------
#    None
#
#####################################################################


#get all processes running now.
for i in `ps -e -F "%r %a"  | grep RunUTnIUT | egrep -v grep | awk '{print $1}'`
do 
   kill -9 -$i
done

exit 0


#----------------------------------------------------------------------
#    Version      Date     Time    Owner   Comment
# ------------- -------- -------- -------- ----------------------------
# V1.0          03/28/94          rachel   original script

# V             04/21/94 12:05:16 rachel   an initial script
# V             04/21/94 12:06:35 rachel   an initial script
