bin/mutt-html2txt@ef7d6daaa1c9
bin/mutt-html2txt
Wed, 15 May 2019 02:19:35 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 15 May 2019 02:19:35 -0500
- changeset 762
- ef7d6daaa1c9
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
update deprecated but unwarned options
#!/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