man-to-html/man-to-html

9 lines
137 B
Plaintext
Raw Normal View History

2019-04-10 23:30:39 +00:00
#!/usr/bin/env bash
2019-04-11 01:15:13 +00:00
title="Edward Shen Manual"
2019-04-10 23:30:39 +00:00
2019-04-11 01:15:13 +00:00
pandoc -f man -t html \
--template man-template \
-M title="$title" \
"$1" > "$2"