bin/mutt-html2txt@1bb170fcd13b
bin/mutt-html2txt
Thu, 08 Jul 2021 12:59:19 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Thu, 08 Jul 2021 12:59:19 -0500
- changeset 923
- 1bb170fcd13b
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
cursed: gopls ignores structured or namespaced config, only the final key name matters
#!/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