
#  @(#)mimepfilo 1.2 95/07/07
#
#  Copyright (c) Mikael Cam.
#                All rights reserved.
#
#  Permission is given to distribute these sources, as long as the
#  copyright messages are not removed, and no monies are exchanged.
#
#  No responsibility is taken for any errors inherent either
#  to the comments or the code of this program, but if reported
#  to me then an attempt will be made to fix them.
#
#  XXX:richb This script used:
#
#       mimep $1 -f | psnup -2 -d | lpr -P ${2} -h
#
#       and
#
#       mimep $1 -f | psnup -2 -d | lpr -h
#
#       I've removed psnup for now.

#!/usr/bin/csh -f
if ($#argv > 0) then
if ($#argv == 2) then
mimep $1 -f | lpr -P ${2} -h
else
mimep $1 -f | lpr -h
endif 
endif
