#!/bin/csh
#
#  This script will print the HydroBase documentation to the specified
#  line printer....
#
set printer = lp

if ($#argv > 0) then
   set printer = $1
endif

echo " using line printer -P$printer"
echo " HB.fig1.ps is quite large and your printer may not have enough memory."

lpr -P$printer HB.title.ps
lpr -P$printer HB.toc.ps
lpr -P$printer HB.body.ps
lpr -P$printer HB.ref.ps
lpr -P$printer HB.append.ps
lpr -P$printer MSQmap.natl.ps
lpr -P$printer staloc.ps
lpr -P$printer HB.fig1.ps
lpr -P$printer HB.fig2.ps
lpr -P$printer HB.fig3.ps

echo " Finished sending document to printer."
exit 0
