bin/mutt-html2txt@14c2238488ce
bin/mutt-html2txt
Wed, 12 May 2021 22:46:20 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 12 May 2021 22:46:20 -0500
- changeset 905
- 14c2238488ce
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
reinstate go format-on-write
#!/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