# set print spooler command
PRINT=""

# set list of PostScript output files to print
PSFILES="PS.doc"

# run document parts and create PostScript output files
troff -Tpost -mpictures mpics.doc | dpost >PS.doc

# print document parts if PRINT is set
if [ x"$PRINT" != "x" ]; then
   $PRINT $PSFILES
fi
