Subject: Re: lisp newbie - how to use lisp with gcl?
From: rpw3@rpw3.org (Rob Warnock)
Date: Tue, 07 Mar 2006 04:09:50 -0600
Newsgroups: comp.lang.lisp
Message-ID: <saednVznQbdzxpDZRVn-jQ@speakeasy.net>
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