# LOCAL print the file
#
if [ "x$PTYPE" = "xpostscript" ]
then
  echo "(PS)Local printing the file(s): $*"
  echo [5i
  /usr/acd/bin/text2ps $*
  echo [4i
else
  for i in $*
  do
    echo "Local printing the file(s): $i"
    echo [5i
    cat $i
    echo [4i
  done
fi
