Prev: Hoy to copy a struct that represents a tree.
Next: Trigger action when operating on a data structure
From: Jim Newton on 22 Oct 2009 11:47 Does anyone know how to translate cmucl UNIX command line to sbcl UNIX command line. The following works for cmucl. lisp -noinit -batch -quiet -eval '(some-expression)(ext:quit)' What is the sbcl equivalent? -jim
From: Stelian Ionescu on 22 Oct 2009 17:16
On Thu, 22 Oct 2009 17:47:14 +0200, Jim Newton wrote: > Does anyone know how to translate cmucl UNIX command line to sbcl UNIX > command line. The following works for cmucl. > > lisp -noinit -batch -quiet -eval '(some-expression)(ext:quit)' > > What is the sbcl equivalent? sbcl --no-userinit --noinform --noprint --disable-debugger \ --eval '(some-expression)(sb-ext:quit)' -- Stelian Ionescu a.k.a. fe[nl]ix Quidquid latine dictum sit, altum videtur. http://common-lisp.net/project/iolib |