bin/mutt-html2txt@0b22685bc75c
bin/mutt-html2txt
Fri, 20 Aug 2021 01:45:40 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Fri, 20 Aug 2021 01:45:40 -0400
- changeset 937
- 0b22685bc75c
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Disable weird stuff from polyglot, but keep a few
#!/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