Adjusted 'bat' alias (should also work if bat is at another location).

This commit is contained in:
Heavy 2022-02-15 13:57:57 +01:00
parent 36fc80a8c9
commit 2fcf95ed31

View File

@ -82,6 +82,6 @@ alias quota='quota -gls'
if [ -x /usr/bin/batcat ]; then
alias cat='batcat'
fi
if [ -x /usr/bin/bat ]; then
if [ -x /usr/bin/bat ] || [ -x bat ]; then
alias cat='bat'
fi