#!/bin/sh 
#$Header:pplpf 12.0$
#$ACIS:pplpf 12.0$
#$Source: /ibm/acis/usr/src/usr.lib/lpr/filters/RCS/pplpf,v $

#send all text files thru lpf prior to printing
#on the 3812 Pageprinter.

trap exit 1 2 3 4 5 6 7 8 9 10 11 12 14 15

# ignore SIGPIPE's (which may occur if ppt goes away when printer goes down)
trap "" 13

/usr/lib/lpf $* | /usr/lib/p3812/ppt -t i $*
