lib/Tools/symbolinput
author wenzelm
Mon, 16 Dec 1996 09:58:16 +0100
changeset 2399 6719b465198b
child 2589 9d910f3681d0
permissions -rwxr-xr-x
symbolinput - translate symbols into \<...> sequences;

#!/bin/bash -norc
#
# $Id$
#
# DESCRIPTION: translate symbols into \<...> sequences
#
# NOTE: If perl is unavailable we simply fall back on cat!


PERL=$(type -path perl)

if [ -z "$PERL" ]
then
  exec cat "$@"
else
  exec $PERL $ISABELLE_HOME/lib/scripts/symbolinput.pl "$@"
fi