bin/mutt-html2txt

Wed, 16 Jun 2021 12:39:20 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 16 Jun 2021 12:39:20 -0500
changeset 912
a409a606c665
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

add autoinstall pg_format stub

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