From 621c93c3a94b9ba4f7f48e145747f44856ea5ae8 Mon Sep 17 00:00:00 2001 From: Larry Masinter Date: Thu, 11 Mar 2021 21:35:44 -0800 Subject: [PATCH] add options to run-medley for new sysouts (#259) --- run-medley | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/run-medley b/run-medley index 1c6dd386..ea21fc21 100755 --- a/run-medley +++ b/run-medley @@ -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"