10 lines
306 B
Bash
Executable File
10 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SBCL=${SBCL:-sbcl}
|
|
|
|
# Use Quicklisp instead of ASDF to silence the output
|
|
exec ${SBCL} --noinform \
|
|
--eval '(format *error-output* "Loading systems...~%")' \
|
|
--eval '(ql:quickload :truth-table/web :silent t)' \
|
|
--eval '(truth-table/web:toplevel)' - "${@}"
|