bin/mutt-html2txt@1698d432a2eb
bin/mutt-html2txt
Sat, 10 Jun 2017 16:19:12 -0700
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Sat, 10 Jun 2017 16:19:12 -0700
- changeset 598
- 1698d432a2eb
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
add gh schemes, why not
#!/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