bin/mutt-html2txt

Fri, 05 May 2017 17:36:49 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 05 May 2017 17:36:49 -0400
changeset 564
81f1da7a57e1
permissions
-rwxr-xr-x

move html dump stuff into one file and customize

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