bin/mutt-html2txt@69ed96c80ed0
bin/mutt-html2txt
Mon, 04 Dec 2017 14:43:44 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 04 Dec 2017 14:43:44 -0500
- changeset 658
- 69ed96c80ed0
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
use the perl compiler plugin, maybe i was confused
#!/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