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