Admin/polyml/polyi
author wenzelm
Sat, 04 Jun 2016 16:54:23 +0200
changeset 63229 f951c624c1a1
parent 60983 Admin/polyml/polyml@ff4a67c65084
child 67580 eb64467e8bcf
permissions -rwxr-xr-x
updated to recent changes of Poly/ML directory layout;

#!/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