bin/mutt-html2txt

Sat, 03 Jul 2021 02:40:31 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 03 Jul 2021 02:40:31 -0500
changeset 918
09aadfdbc7dd
parent 564
81f1da7a57e1
permissions
-rwxr-xr-x

fsck sucks without these. i'm so tired. git please

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