bin/mutt-html2txt

Mon, 05 Jun 2017 20:26:33 -0700

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 05 Jun 2017 20:26:33 -0700
changeset 595
d034d9f4a36b
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

add no-tty

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