#!/bin/csh -q
#
unalias rm
set tf=/tmp/print_big.$$
onintr quit

cat >! $tf
lpr -s -r $* $tf
exit 0

quit
rm -f $tf
exit 1
