bin/mutt-html2txt@b1b644e9825d
bin/mutt-html2txt
Tue, 14 Feb 2023 02:39:04 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Tue, 14 Feb 2023 02:39:04 -0600
- changeset 1020
- b1b644e9825d
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Add more plain vim plugins
#!/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