bin/mutt-html2txt@3c51616458c8
bin/mutt-html2txt
Fri, 18 May 2018 12:10:39 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Fri, 18 May 2018 12:10:39 -0400
- changeset 708
- 3c51616458c8
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Include cpanm here
#!/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