clear
lpstat
if test $? -ne 0; then exit 1; fi
echo 
echo "Enter the Job Number to cancel (see Job on above print list) (q=quit)>"
read answer
if  test "$answer" = "q" -o "$answer" = ""; then
   exit 0
fi
cancel $answer
echo 
echo
echo "Press any key to return to ACCOUNTFLEX menu"
read answer
