symbolinput - translate symbols into \<...> sequences;
authorwenzelm
Mon, 16 Dec 1996 09:58:16 +0100
changeset 2399 6719b465198b
parent 2398 d4164ea87229
child 2400 4b08766bc9d1
symbolinput - translate symbols into \<...> sequences;
lib/Tools/symbolinput
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/Tools/symbolinput	Mon Dec 16 09:58:16 1996 +0100
@@ -0,0 +1,17 @@
+#!/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