Admin/polyml/polyi
author wenzelm
Tue, 19 Sep 2017 14:22:51 +0200
changeset 66679 ed8d359d92e4
parent 63229 f951c624c1a1
child 67580 eb64467e8bcf
permissions -rwxr-xr-x
clarified signature according to Scala version;

#!/usr/bin/env bash
#
# Portable Poly/ML command-line tool

THIS="$(cd "$(dirname "$0")"; pwd)"

export LD_LIBRARY_PATH="$THIS:$LD_LIBRARY_PATH"
export DYLD_LIBRARY_PATH="$THIS:$DYLD_LIBRARY_PATH"

if type -p rlwrap > /dev/null
then
  exec rlwrap "$THIS/poly" "$@"
else
  exec "$THIS/poly" "$@"
fi