home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre2.z / postgre2 / doc / psprint < prev    next >
Encoding:
Text File  |  1992-08-27  |  210 b   |  17 lines

  1. #!/bin/sh
  2.  
  3. #
  4. # Print a Postscript file.  MAKE SURE THAT PRINTER IS A POSTSCRIPT PRINTER!!!
  5. #
  6.  
  7. PRINTER="lw"
  8. PRINT=`pwd`/print
  9.  
  10. for i in psdump/* psdump/*/*
  11. do
  12.     if (test -f $i)
  13.     then
  14.         lpr -P$PRINTER $i
  15.     fi
  16. done
  17.