bin/mutt-html2txt

Tue, 13 Mar 2018 16:35:13 -0700

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 13 Mar 2018 16:35:13 -0700
changeset 702
f817544836c7
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

all vim builds are py3, but gundo doesn't autodetect

#!/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

mercurial