ctpv/sh/prev/bat.sh

18 lines
250 B
Bash
Raw Normal View History

2022-06-18 17:50:57 +02:00
# text: bat
if exists bat; then
batcmd=bat
elif exists batcat; then
batcmd=batcat
else
exit 127
fi
"$batcmd" \
--color always \
--style plain \
--paging never \
--terminal-width "$w" \
--wrap character \
-- "$f"