Mikalai <mbirukou@yahoo.com> wrote:
+---------------
| Indeed, it escapses me why neither gcl, nor sbcl (cmucl as well?),
| do not have a standard command line process-one-file thing.
+---------------
I'm not sure what you mean w.r.t. CMUCL, since you can always
use the "-load" switch:
$ cat foo.lisp
(format t "hello world!~%")
$ cmucl -load foo.lisp -eval '(quit)'
; Loading #p"/u/rpw3/.cmucl-init".
; Loading #p"/u/rpw3/foo.lisp".
hello world!
$
-Rob
-----
Rob Warnock <rpw3@rpw3.org>
627 26th Avenue <URL:http://rpw3.org/>
San Mateo, CA 94403 (650)572-2607