Source bash_profile if there's a tty OR if there's a login shell. This is for No...
[profile.git] / .bash_profile
1 # $Id$
2 if $(tty -s) || $(shopt -q login_shell); then
3   for i in ~/.profile.d/*.bashrc; do . $i; done
4   __ps1
5 fi