*** Everything seems to work from here to where my spool file is
created in the *** sql.
# Check for old file - remove if found
if [ -f /var/voice/voicecleanup.txt ]
then
rm /var/voice/voicecleanup.txt
fi
# Logon tp SQLplus, Run Sql file
sqlplus -s username/password<<END
quit
END
**** This is where the code fails. All code after the above line
never executes. What am I doing wrong
# Clean up spool file
sed -e 's/^[ \t]*//;s/[ \t]*$//' -e '/^$/d' -e '$d' voicecleanup.lst
echo '.EOF' >> voicecleanup.txtQuote:>> voicecleanup.txt