mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-13 10:20:37 +01:00
12 lines
512 B
Plaintext
12 lines
512 B
Plaintext
|
# Note: Better user vh-man2html !!
|
||
|
|
||
|
outfile=boxes.1.shtml
|
||
|
if [ -e $outfile ]; then
|
||
|
cp -a $outfile $outfile"."$$".bak"
|
||
|
fi
|
||
|
cat ./boxes.1 | sed -e 's/^\.br/--LINEBREAK--/' | man -l - | man2html -title 'boxes(1)' | sed -e 's/boxes@thomasjensen.com/boxes(at)thomasjensen(dot)com/g' -e 's/<URL:\([^&]\+\)>/<a target="_blank" href="\1">\1<\/a>/g' -e 's/<\/BODY>/\n<!--#include file="footer.inc.shtml" -->\n\n<\/BODY>/' > $outfile
|
||
|
echo "Conversion complete. Excessive manual work remains."
|
||
|
|
||
|
|
||
|
# vim: set wrap :
|