bin/mutt-html2txt@7520062c1461
bin/mutt-html2txt
Thu, 22 Mar 2018 15:24:14 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Thu, 22 Mar 2018 15:24:14 -0400
- changeset 705
- 7520062c1461
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
okay -actually- get it to focus the new window
#!/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