diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 00:03:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 00:03:42 +0300 |
commit | 23d3c183b0f1cf6ba37144572419966472162070 (patch) | |
tree | e0d2cd93e37c2ce95f71194e2a5aad7d68a0647c | |
parent | .bashrc: code style (diff) | |
download | linux-home-23d3c183b0f1cf6ba37144572419966472162070.tar.gz linux-home-23d3c183b0f1cf6ba37144572419966472162070.zip |
.bashrc: source files from $HOME, not cwd
-rw-r--r-- | %HOME%/.bashrc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index e75ce20..e68f71b 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -219,8 +219,8 @@ alias tree='tree -a' [ "$( uname -o )" == 'Cygwin' ] && alias list_packages='cygcheck -cd' -[ -f '.bash_utils/cxx.sh' ] && source .bash_utils/cxx.sh -[ -f '.bash_utils/distr.sh' ] && source .bash_utils/distr.sh -[ -f '.bash_utils/file.sh' ] && source .bash_utils/file.sh -[ -f '.bash_utils/git.sh' ] && source .bash_utils/git.sh -[ -f '.bash_utils/text.sh' ] && source .bash_utils/text.sh +[ -f "$HOME/.bash_utils/cxx.sh" ] && source "$HOME/.bash_utils/cxx.sh" +[ -f "$HOME/.bash_utils/distr.sh" ] && source "$HOME/.bash_utils/distr.sh" +[ -f "$HOME/.bash_utils/file.sh" ] && source "$HOME/.bash_utils/file.sh" +[ -f "$HOME/.bash_utils/git.sh" ] && source "$HOME/.bash_utils/git.sh" +[ -f "$HOME/.bash_utils/text.sh" ] && source "$HOME/.bash_utils/text.sh" |