16 lines
351 B
Bash
16 lines
351 B
Bash
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
|
|
if [ -f "$HOME/.bash_exports" ]; then
|
|
. "$HOME/.bash_exports"
|
|
fi
|
|
|
|
# if ! shopt -oq posix; then
|
|
# if [ -f /usr/share/bash-completion/bash_completion ]; then
|
|
# . /usr/share/bash-completion/bash_completion
|
|
# elif [ -f /etc/bash_completion ]; then
|
|
# . /etc/bash_completion
|
|
# fi
|
|
# fi
|