Files
mercury/scripts/msp.sh
Fergus Henderson b8f65b6dfb Add script for invoking the Mercury SICStus Prolog interpreter.
mercury/scripts/msp.sh:
	Add script for invoking the Mercury SICStus Prolog interpreter.
1995-03-18 14:21:52 +00:00

15 lines
334 B
Bash

#!/bin/sh
# msp - Mercury SICStus Prolog Interpreter
#
# A version of `sp' with `sp_builtin' and the Mercury library already loaded.
#
# Usage: msp [<sp options>]
#
# Environment variables: MERCURY_SICSTUS_INTERPRETER
INTERPRETER=\
${MERCURY_SICSTUS_INTERPRETER:-@LIBDIR@/sicstus/@FULLARCH@/library.sicstus}
exec $INTERPRETER "$@"