#!/bin/sh
# gifaprint file1 
#
# send file1 to the printer
# used by gifa for printing files
# you should adapt it to your local set-up
#
if test $1 = '*PRINTER'
then lpr -r $1
else lpr $1
fi
