.bash_profile
4f2a4719
 ## Source POSIX login session startup script
 if [ -r "$HOME/.profile" ]
 then
     . "$HOME/.profile"
 fi
 
 ## For interactive shells, source `.bashrc`
 # This happens with login shells.
 case $- in
     *i*)
         # Source Bash interactive shell startup scripts.
         if [ -r "$HOME/.bashrc" ]
         then
             . "$HOME/.bashrc"
         fi
         ;;
 esac