On Sun, Nov 28, 2010 at 7:33 PM, Ville Voutilainen ville.voutilainen@gmail.com wrote:
On 29 November 2010 03:14, Gabriel Dos Reis gdr@integrable-solutions.net wrote:
suggests as first option `Our wiki'. Clicking on the link http://trac.common-lisp.net/project/wiki displays the message as indicated in the $SUBJECT. I take that to indicate that ABCL (website) is relying on a dangling reference...
Thanks for the heads-up, that link is botched. We'll fix it.
That being reported, where is the documentation of the options accepted by the `abcl' driver?
I don't think there is any documentation for those besides the source code in Interpreter.java (preprocessCommandLineArguments). We'll need to fix that as well.
OK, thanks. I see that, among other things, the following are supported (at least from eyeballing the source code)
--eval --batch --noinform
and they are part of what I was looking for. However, --batch does not seem to work to do anything that it name would suggest -- e.g. it still lands me into the REPL (which I don't want). Furthermore, --eval does not print the result of evaluation. For example, trying
abcl --noinform --batch --eval '(lisp-implementation-version)'
lands me squarely into the REPL with no printed result. I was expecting "0.24.0-dev" printed on the standard output stream, and control back to the shell.
-- Gaby