bin/mutt-html2txt@be78943b95de
bin/mutt-html2txt
Wed, 31 May 2017 12:17:38 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 31 May 2017 12:17:38 -0400
- changeset 589
- be78943b95de
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
simplify
#!/bin/sh
set -eu
LINKS="links -html-tables 0 -html-image-names 0 -html-margin 0"
FILE=${1:--}
[ "$FILE" != '-' ] &&
exec $LINKS -dump $FILE
TMPHTML="$(mktemp).html"
cat > $TMPHTML
$LINKS -dump $TMPHTML
rm -f $TMPHTML