#add to post.sh

STOP=`grep computer stats.txt | egrep -v "noneyet"|wc -l`

if [ $STOP -gt 0 ]
then
 GAYM=`pwd|cut -d/ -f6`
 PID=`ps ax | grep $GAYM | grep dom3 | cut -d" " -f-2`
 kill $PID
 diff 2.stats.txt stats.txt |mail -s "$GAYM stopped" heyyou
 exit
fi



