
#  $Header: /cvsroot/mpdist/mpdist/mimep/shells/mimepfilo,v 1.1.1.1 2002/04/12 16:47:26 richbastard Exp $
#
#  Copyright (c) Mikael Cam.
#                All rights reserved.
#
# This software is free software; you can redistribute it and/or modify it
# under the terms of the GNU Library General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This software is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
# License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with this software; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#  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
