diff options
author | Ian C <deahtstation9000@gmail.com> | 2022-08-03 10:11:44 +0100 |
---|---|---|
committer | Ian C <deahtstation9000@gmail.com> | 2022-08-03 10:11:44 +0100 |
commit | a93ba5d615b226a56f069944d1dea5f55b80fa58 (patch) | |
tree | 92411bb5e9263c7febcb35dd8db7e3d848a5d7c5 | |
parent | 6b8c7dc7caabd2242d826ad0eda083d55f6ff587 (diff) |
Added support for local bash aliases
-rw-r--r-- | dotrc/.bashrc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dotrc/.bashrc b/dotrc/.bashrc index 858116c..0c33436 100644 --- a/dotrc/.bashrc +++ b/dotrc/.bashrc @@ -4,6 +4,8 @@ fi test -s $HOME/.bash_aliases && . $HOME/.bash_aliases +test -s $HOME/.bash_aliases.local && . $HOME/.bash_aliases.local + if [ ! "$(echo $PATH | fgrep $HOME/bin)" ] ; then export PATH=$HOME/bin:$PATH fi |