printcap revision 32241
137Srgrimes#	@(#)printcap	5.3 (Berkeley) 6/30/90
232241Ssteve# $Id: printcap,v 1.7 1997/02/23 09:20:44 peter Exp $
337Srgrimes
418912Sjoerg#
518912Sjoerg# This enables a simple local "raw" printer, hooked up to the first
618912Sjoerg# parallel port.  No kind of filtering is done, so everything you
718912Sjoerg# pass to the "lpr" command will be printed unmodified.
818912Sjoerg#
918912Sjoerg# Remember, for further print queues you're going to add, you have to
1018912Sjoerg# chose different spool directories (the "sd" capability below),
1118912Sjoerg# otherwise you will greatly confuse lpd.
1218912Sjoerg#
1318912Sjoerg# For some advanced printing, have a look at the "apsfilter" package.
1418912Sjoerg# It plugs into the lpd system, allowing you to print a variety of
1518912Sjoerg# different file types by converting everything to PostScript(tm)
1618912Sjoerg# format.  If you don't have a PostScript(tm) printer, don't panic,
1718912Sjoerg# but do also install the "ghostscript" package.
1818912Sjoerg#
1918912Sjoerg# Do also refer to section 7 (Printing) of the handbook.  A local copy
2018912Sjoerg# can be found under /usr/share/doc/handbook/handbook.{html,latin1}.
2118912Sjoerg#
2232241Ssteve# Banner pages are now suppressed by default.  Remove the :sh:
2332241Ssteve# capability to turn them back on.
2432241Ssteve#
2518912Sjoerglp|local line printer:\
2632241Ssteve	:sh:\
2718912Sjoerg	:lp=/dev/lpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:
2818912Sjoerg#
2918912Sjoerg# Sample remote printer.  The physical printer is on machine "lphost".
3018912Sjoerg# NB: you cannot perform any kind of local filtering directly.  If
3118912Sjoerg# you need local filters (e.g. LF -> CR-LF conversion for HP printers),
3218912Sjoerg# create a filter script that recursively calls lpd with another -P
3318912Sjoerg# argument after filtering.
3418912Sjoerg#
3518912Sjoerg#remote|sample remote printer:\
3632241Ssteve#	:sh:\
3718912Sjoerg#	:rm=lphost:sd=/var/spool/output/lphost:lf=/var/log/lpd-errs:
38