diff options
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.bash_profile b/.bash_profile index 82ea3c8..ad8dc45 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,9 +1,6 @@ -#!/bin/bash -l +# +# ~/.bash_profile +# -for i in ~/.profile ~/.bashrc -do - if test -f "$i" - then - . "$i" - fi -done +[[ -f ~/.profile ]] && . ~/.profile +[[ -f ~/.bashrc ]] && . ~/.bashrc |