bin/mutt-html2txt@68baaab84a0c
bin/mutt-html2txt
Mon, 13 Dec 2021 13:02:46 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 13 Dec 2021 13:02:46 -0600
- changeset 961
- 68baaab84a0c
- parent 564
-
81f1da7a57e1
- permissions
- -rwxr-xr-x
Make git-histedit an alias. can use --keep-base after 2.24
#!/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