ghcitui/regenerate_help.sh
2024-01-15 13:04:18 -08:00

8 lines
167 B
Bash
Executable File

#!/bin/sh
GENDIR="gen"
mkdir -p "${GENDIR}"
TMPFILE="$(mktemp)"
rst2man MANUAL.rst > "${TMPFILE}"
MANWIDTH=79 man "${TMPFILE}" | sed -e '1,5d' > ${GENDIR}/MANUAL.txt