feat: Ajout d'un alias automatique pour bat (improved cat)

This commit is contained in:
Xavier Logerais 2025-01-17 08:55:27 +00:00
parent 9e5fcc649e
commit 5f0ab15c42

5
aliases.d/bat Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
if (command -v bat &>/dev/null); then
alias cat=bat
fi