added mdw.sh

This commit is contained in:
Tobias Schmidl 2022-06-07 20:53:53 +02:00
parent 60a15ad87e
commit 7329f17095

11
.local/bin/mdw.sh Executable file
View file

@ -0,0 +1,11 @@
#! /bin/bash
[ ! -r "$1" ] && {
echo "Usage: $0 <input file>" >&2
return 1
}
TEMP_FILE=$(mktemp --tmpdir -u "$(basename "$1").XXXXXX.html")
pandoc "$1" > "$TEMP_FILE"
x-www-browser "$TEMP_FILE"
sleep 2
/bin/rm "$TEMP_FILE"