bin/mutt-html2txt

Wed, 23 Aug 2017 01:18:37 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 23 Aug 2017 01:18:37 -0400
changeset 632
9a87ce42aa3c
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

getcmdpos is cursor position in expr mode here, wont work

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