#! /bin/sh if [ -z "$1" ]; then echo "Usage: $0 file.doc" exit 1 fi tmpfile="`mktemp -t XXXXXX.html`" && wvHtml "$1" "$tmpfile" && webdump2 "$tmpfile" && exec rm "$tmpfile"