1
0
mirror of synced 2026-01-26 04:12:03 +00:00

move loadup scripts + part of initial phase of cleanup (#174)

This commit is contained in:
Larry Masinter
2021-02-11 16:35:41 -08:00
committed by GitHub
parent 946472410c
commit c3d89a7f34
16 changed files with 21 additions and 30 deletions

14
scripts/loadup-full.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
export MEDLEYDIR=`pwd`
if [ ! -f run-medley ] ; then
echo must run from MEDLEYDIR ;
exit 1 ;
fi
export LOADUPDIR=$MEDLEYDIR
./run-medley -greet $MEDLEYDIR/sources/LOADUP-FULL.LCOM $MEDLEYDIR/loadups/xlisp.sysout

12
scripts/loadup-lisp.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
export MEDLEYDIR=`pwd`
if [ ! -f run-medley ] ; then
echo run from MEDLEYDIR
exit 1
fi
export LOADUPDIR=$MEDLEYDIR
./run-medley -greet $MEDLEYDIR/sources/LOADUP-LISP.LCOM $MEDLEYDIR/loadups/lisp.venuesysout