hi everyone below is my shell script,

i need help from someone.
#!/bin/ksh
#show some useful info
date
echo Good morning $USER
cal
PROGLIST=`cat process.csv`
for PROG in $PROGLIST
do
PRONAME=`echo "$LINE" | cut -d";" -f2`
PROEXE=`echo "$LINE" | cut -d";" -f1`
RUNNINGPROGCOUNT=`ps -ef | grep "$PROG" | wc -l`
echo $RUNNINGPROGCOUNT
#check the program is running
if [ ${RUNNINGPROGCOUNT} -eq 0 ]; then
echo $PROEXE
#run the program
$PROEXE
echo `date` Restart $PROEXE
fi
done