From ac6604db78f240d147f7bf24e146aee0f4951b4b Mon Sep 17 00:00:00 2001 From: Phil Date: Wed, 18 Sep 2024 13:34:21 +0100 Subject: [PATCH] Added .alias_local file, to allow the addition of aliasas local to the system without adding them into the main file --- .bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bashrc b/.bashrc index 86563ab..5dff4dd 100644 --- a/.bashrc +++ b/.bashrc @@ -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).