# Check if running

p_run=`ps ax |grep temptime |grep -v grep|cut -c0-5`
if [ ! "$p_run" = "" ]; then
  kill -9 $p_run
fi

p_run=`ps ax |grep datime |grep -v grep|cut -c0-5`
if [ ! "$p_run" = "" ]; then
  kill -9 $p_run
fi

p_run=`ps ax |grep vfdtime |grep -v grep|cut -c0-5`
if [ ! "$p_run" = "" ]; then
  kill -9 $p_run
fi

p_run=`ps ax |grep vfdtimeS |grep -v grep|cut -c0-5`
if [ ! "$p_run" = "" ]; then
  kill -9 $p_run
fi

p_run=`ps ax |grep datetime |grep -v grep|cut -c0-5`
if [ "$p_run" = "" ]; then
  /var/bin/vfdtimeS.sh &
fi



