6 lines
70 B
Plaintext
6 lines
70 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if (command -v bat &>/dev/null); then
|
||
|
alias cat=bat
|
||
|
fi
|