#!/bin/sh
# Print a set of files by feeding them to  pr  with  whatever  default
# options  I  find  useful  at  the  moment,  and including an initial
# formfeed to make sure the first pa/local/bin/perl is lined up right.

#echo $PATH

#(chars ff; pr $* ) | lp

for f
do	 
#	lp $f 
#	cat $f >>/dev/printer
	pr -e4 -o4 $f | lpr
done
