21 lines
457 B
Bash
21 lines
457 B
Bash
# If not running interactively, don't do anything and return early
|
|
# [[ $- == *i* ]] || return
|
|
# if [ -f /zz/zShared/shared/bashrc ]
|
|
# then
|
|
# . /zz/zShared/shared/bashrc
|
|
# fi
|
|
|
|
# if [ -f /zz/zPrivate/secrets/bashrc ]
|
|
# then
|
|
# . /zz/zPrivate/secrets/bashrc
|
|
# else
|
|
# if [ -f /zz/Syno/secrets/bashrc ]
|
|
# then
|
|
# . /zz/zSyno/secrets/bashrc
|
|
# else
|
|
if [ -f ~/.bashrc ]; then
|
|
source ~/.bashrc
|
|
fi
|
|
# fi
|
|
# fi
|