lisp/build-manual.sh @ c815c49ae234

More
author Steve Losh <steve@stevelosh.com>
date Mon, 29 Mar 2021 20:30:04 -0400
parents (none)
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