lisp/build-manual.sh @ 4e0ee24c82a7

More
author Steve Losh <steve@stevelosh.com>
date Thu, 01 Feb 2024 08:33:56 -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