bin/mutt-html2txt@8d27d60a9cbc
bin/mutt-html2txt
Wed, 31 May 2017 15:10:35 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 31 May 2017 15:10:35 -0400
- changeset 590
- 8d27d60a9cbc
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
color html preview at least
#!/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