bin/mutt-html2txt@a74ea5b0fc73
bin/mutt-html2txt
Tue, 28 Nov 2017 11:24:45 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Tue, 28 Nov 2017 11:24:45 -0500
- changeset 656
- a74ea5b0fc73
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Fix error marker due to loose function-parameters match
#!/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