16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
|
# if running bash
|
||
|
if [ -n "$BASH_VERSION" ]; then
|
||
|
|
||
|
# source all the things
|
||
|
for file in ~/.{bash_aliases,bashrc,bash_prompt}; do
|
||
|
[ -r "$file" ] && [ -f "$file" ] && source "$file"
|
||
|
done;
|
||
|
unset file;
|
||
|
|
||
|
fi
|
||
|
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d "$HOME/bin" ] ; then
|
||
|
PATH="$HOME/bin:$PATH"
|
||
|
fi
|