1# Different platforms have different names for the systemwide bashrc 2if [[ -f /etc/bashrc ]]; then 3 source /etc/bashrc 4fi 5if [[ -f /etc/bash.bashrc ]]; then 6 source /etc/bash.bashrc 7fi 8if [[ -f ~/.bashrc ]]; then 9 source ~/.bashrc 10fi 11 12# Reset PS1 so pexpect can find it 13PS1="$" 14 15# Unset PROMPT_COMMAND, so that it can't change PS1 to something unexpected. 16unset PROMPT_COMMAND 17