home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume18 / notation / part01 / print-ps < prev    next >
Encoding:
Text File  |  1991-04-13  |  134 b   |  9 lines

  1. #!/bin/sh
  2. # printer for ps files using the font chess
  3. # args : files to print
  4. CHEQFILE="./Cheq"
  5. for i
  6. do
  7.     cat $CHEQFILE $i | lpr
  8. done
  9.