This is a quick guide to the command line arguments accepted by the ABCL wrapper script.
--help | Displays help about the arguments.
|
--noinform | Suppresses the printing of version info.
|
--eval <form> | Evaluates the <form> before initializing REPL.
|
--load <file> | Loads the file <file> before initializing REPL.
|
--load-system-file <file> | Loads the system file <file> before initializing REPL. This is practically for loading files from the ABCL jar.
|
--batch | Wnables batch mode. The --load, --load-system-file and --eval parameters are handled, and abcl exits without entering REPL.
|
--noinit | Suppresses loading a .abclrc startup file.
|
--nosystem | Suppresses loading the system startup file. This practically means a file named "system" inside the ABCL jar.
|