1
0
mirror of synced 2026-02-27 01:19:42 +00:00

add options to run-medley for new sysouts (#259)

This commit is contained in:
Larry Masinter
2021-03-11 21:35:44 -08:00
committed by GitHub
parent 14d927bf71
commit 621c93c3a9

View File

@@ -7,6 +7,7 @@
# [--display X_DISPLAY] \
# [--vmem | --vmfile FILE] \
# [--nogreet | --greet FILE] \
# [-n | -nl |
# [URL_OR_FILE]
# Directory variables are accessible from Lisp via UNIX-GETENV
@@ -101,6 +102,12 @@ while [ "$#" -ne 0 ]; do
"-lisp")
export LDESRCESYSOUT="$MEDLEYDIR/loadups/lisp.sysout"
;;
"-n" | "-new" | "-newfull" )
export LDESRCESYSOUT="$MEDLEYDIR/tmp/full.sysout"
;;
"-nl" | "-newlisp" )
export LDESRCESYSOUT="$MEDLEYDIR/tmp/lisp.sysout"
;;
"-*")
passthrough_args="$passthrough_args $1 $2"
echo passing through unrecognized option: "$1" "$2"