bin/mutt-html2txt@8e07c29f2672
bin/mutt-html2txt
Wed, 23 Aug 2017 01:14:56 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 23 Aug 2017 01:14:56 -0400
- changeset 631
- 8e07c29f2672
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
fix viewdoc abbrevs and cabbrevs in general
#!/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