.bash_profile execs into zsh when available (chsh doesn't persist in containers). Shows amber warning if zsh not found. .bashrc sources .bash_profile for non-login bash sessions (e.g. iTerm2 profiles with 'bash' command). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
3 lines
133 B
Bash
3 lines
133 B
Bash
# Non-login shells read .bashrc; source .bash_profile for unified setup
|
|
[ -f "$HOME/.bash_profile" ] && source "$HOME/.bash_profile"
|