Added .alias_local file, to allow the addition of aliasas local to the system without adding them into the main file

This commit is contained in:
Phil 2024-09-18 13:34:21 +01:00
parent 51a5e84bdf
commit ac6604db78

View File

@ -125,6 +125,10 @@ if [ -f ~/.aliases ]; then
. ~/.aliases
fi
# Alias definitions local to the system
if [ -f ~/.aliases_local ]; then
. ~/.aliases_local
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).