diff options
-rw-r--r-- | bash/.bashrc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc index 39508c5..40e0b45 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -67,6 +67,14 @@ if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi +# Local definitions. +# Since this file is shared among multiple machines, you may want to add +# all definitions local to the machine in a separate file. +# We use ~/.bash_local for this purpose. +if [ -f ~/.bash_local ]; then + . ~/.bash_local +fi + # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profiles # sources /etc/bash.bashrc). |