Files
2024-12-25 22:16:36 +00:00

12 lines
151 B
Bash

#!/bin/sh
file=$(man -w $@) || exit
if gzip -t $file
then
zcat $file
else
cat $file
fi | groff -mandoc -T html
# % man2html ls > ls_manpage.html