2019-09-30 12:49:14 +00:00
|
|
|
#!/bin/zsh
|
2020-08-11 10:09:05 +00:00
|
|
|
#dep:mdcat iconv
|
2019-09-30 12:49:14 +00:00
|
|
|
|
|
|
|
MDCAT=/usr/bin/mdcat
|
|
|
|
encoding=$(file -i "$1" | sed "s/.*charset=\(.*\)$/\1/")
|
|
|
|
if ! iconv -f $encoding <<<"" &> /dev/null; then
|
|
|
|
cat "$1"
|
|
|
|
elif [[ $encoding != 'utf-8' ]]; then
|
|
|
|
iconv -f $encoding -t 'utf-8' < "$1" | $MDCAT /dev/stdin
|
|
|
|
else
|
|
|
|
$MDCAT $1
|
|
|
|
fi
|