1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
abcl --load demo3.lisp --batch
abcl --load spx.lisp --batch
abcl --load grouped-layers.lisp --batch
abcl --load fe.lisp --batch
abcl --load fe2.lisp --batch
abcl --load special-slots-1.lisp --batch
abcl --load special-slots-2.lisp --batch
abcl --load special-slots-3.lisp --batch
abcl --load layer-gc.lisp --batch
abcl --load dynenv.lisp --batch
abcl --load partial-initargs.lisp --batch
acl --debug-startup -L ~/.clinit.cl -L demo3.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L spx.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L grouped-layers.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L fe.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L fe2.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L special-slots-1.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L special-slots-2.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L special-slots-3.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L layer-gc.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L dynenv.lisp --kill
acl --debug-startup -L ~/.clinit.cl -L partial-initargs.lisp --kill
ccl -l demo3.lisp -e '(quit)'
ccl -l spx.lisp -e '(quit)'
ccl -l grouped-layers.lisp -e '(quit)'
ccl -l fe.lisp -e '(quit)'
ccl -l fe2.lisp -e '(quit)'
ccl -l special-slots-1.lisp -e '(quit)'
ccl -l special-slots-2.lisp -e '(quit)'
ccl -l special-slots-3.lisp -e '(quit)'
ccl -l layer-gc.lisp -e '(quit)'
ccl -l dynenv.lisp -e '(quit)'
ccl -l partial-initargs.lisp -e '(quit)'
clisp -i ~/.clisprc.lisp -on-error debug demo3.lisp
clisp -i ~/.clisprc.lisp -on-error debug spx.lisp
clisp -i ~/.clisprc.lisp -on-error debug grouped-layers.lisp
clisp -i ~/.clisprc.lisp -on-error debug fe.lisp
clisp -i ~/.clisprc.lisp -on-error debug fe2.lisp
clisp -i ~/.clisprc.lisp -on-error debug special-slots-1.lisp
clisp -i ~/.clisprc.lisp -on-error debug special-slots-2.lisp
clisp -i ~/.clisprc.lisp -on-error debug special-slots-3.lisp
clisp -i ~/.clisprc.lisp -on-error debug layer-gc.lisp
clisp -i ~/.clisprc.lisp -on-error debug dynenv.lisp
clisp -i ~/.clisprc.lisp -on-error debug partial-initargs.lisp
ecl -debug -shell demo3.lisp
ecl -debug -shell spx.lisp
ecl -debug -shell grouped-layers.lisp
ecl -debug -shell fe.lisp
ecl -debug -shell fe2.lisp
ecl -debug -shell special-slots-1.lisp
ecl -debug -shell special-slots-2.lisp
ecl -debug -shell special-slots-3.lisp
ecl -debug -shell layer-gc.lisp
ecl -debug -shell dynenv.lisp
ecl -debug -shell partial-initargs.lisp
lisp -load demo3.lisp -eval '(quit)'
lisp -load spx.lisp -eval '(quit)'
lisp -load grouped-layers.lisp -eval '(quit)'
lisp -load fe.lisp -eval '(quit)'
lisp -load fe2.lisp -eval '(quit)'
lisp -load special-slots-1.lisp -eval '(quit)'
lisp -load special-slots-2.lisp -eval '(quit)'
lisp -load special-slots-3.lisp -eval '(quit)'
lisp -load layer-gc.lisp -eval '(quit)'
lisp -load dynenv.lisp -eval '(quit)'
lisp -load partial-initargs.lisp -eval '(quit)'
sbcl --load demo3.lisp --quit
sbcl --load spx.lisp --quit
sbcl --load grouped-layers.lisp --quit
sbcl --load fe.lisp --quit
sbcl --load fe2.lisp --quit
sbcl --load special-slots-1.lisp --quit
sbcl --load special-slots-2.lisp --quit
sbcl --load special-slots-3.lisp --quit
sbcl --load layer-gc.lisp --quit
sbcl --load dynenv.lisp --quit
sbcl --load partial-initargs.lisp --quit
|