5 examples for sbcl
# Load one or more lisp files before starting REPL
sbcl --load file1.lisp --load file2.lisp
# Can also be used with --eval
sbcl --load file1.lisp --eval '(hello)'
# Quit after loading and evalling command line options
sbcl --noinform --quit --load file1.lisp --eval '(main)'