bin/mutt-html2txt

Sun, 21 May 2017 23:28:19 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 21 May 2017 23:28:19 -0400
changeset 574
3874b97048b0
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

Move vundle install to func, switch to begin/end vundle interface

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