lisp/build-manual @ 52daeac2d624

New laptop
author Steve Losh <steve@stevelosh.com>
date Wed, 21 Oct 2020 23:33:40 -0400
parents 3e8af1c65b8c
children (none)
#!/usr/bin/env bash

set -euo pipefail

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

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