lib/Tools/symbolinput
author nipkow
Thu, 24 Jul 1997 11:13:12 +0200
changeset 3572 5ec1589eac1b
parent 3007 e5efa177ee0c
child 4508 f102cb0140fe
permissions -rwxr-xr-x
Replaced clumsy rewriting by the new function simplify on thms.

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


PERL=$(type -path perl)

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