lisp/build-manual.sh @ 2a6258a8b0e6

More
author Steve Losh <steve@stevelosh.com>
date Tue, 07 Feb 2023 11:14:10 -0500
parents c815c49ae234
children (none)
#!/usr/bin/env bash

set -euo pipefail

LISP=$1
NAME=$(basename "$LISP" .lisp)
OUT="$NAME.1"
shift

sbcl --load "$LISP" \
    --eval "(with-open-file (f \"$OUT\" :direction :output :if-exists :supersede)
              (adopt:print-manual $NAME:*ui* :stream f))" \
    --quit