]> git.phdru.name Git - dotfiles.git/blob - bin/doc2html1
Initial import
[dotfiles.git] / bin / doc2html1
1 #! /bin/sh
2
3 if [ -z "$1" ]; then
4    echo "Usage: $0 file.doc"
5    exit 1
6 fi
7
8 tmpfile="`mktemp -t XXXXXX.html`" && wvHtml "$1" "$tmpfile" &&
9 webdump "$tmpfile" && exec rm "$tmpfile"