I have a .bash_profile file that I added some stuff to (aliases and color and some git stuff) and when I open iTerm and source it then everything's fine and I have everything but when I close iTerm and reopen it then no colors and no aliases until I source it again.
What should I do to permanently source it?
Is it maybe sourcing another file? How can I check that?
EDIT: I checked my iTerm preferences, and the "login shell" option is checked so I imagine it should source it when i open iTerm.
75 Answers
It's also possible that your terminal shell is defaulting to sh instead of bash. You can verify this first:
$ echo $SHELL /bin/tcshTo change this to bash, you can go into your Terminal -> Preferences -> Startup tab, and change "Shell Opens With:" from "Default login shell" to Command and value "/bin/bash".
Alternately, you can change your default shell by executing the following command at the command prompt:
chsh -s /bin/bashAfter you do either of these, open a new shell window, and your .bash_profile should be sourced.
2Ok so I dug deeper into it and it's trying to source .profile and I, instead, had .bash_profile. So I created a ~/.profile file and copied the content of .bash_profile into it, and then - WORKS! It is sourced whenever I start iTerm or Terminal.
.profile, .bash_profile and similar files are only sourced by "login" shells. In other words, only when you log in to the system. Therefore it does not make sense to set aliases there.
Keep only environment variables (export commands) in .bash_profile. Use ~/.bashrc for everything else. Source it from .bash_profile too.
I was thinking on .bash_profile then I forgot to login and doesn't work, if you login your .bash_profile will work perfectly.
Try:
$ login
$ login: (your name here)
$ password: (your password here) I had this same problem. I fixed it by going to iTerm > Preferences > General. Select your desired profile (if you have more than one) and toggle the Command option and input /usr/local/bin/bash -l. If you don't have Homebrew installed then it will likely be /bin/bash -l. If you aren't sure, type the command $which bash and it will tell which executable you are running. Moreover, if you are on OS X, I highly recommend learning why you want Homebrew and how to install it. Note that its L and not I depending on your font. By adding the flag -l it starts bash in login mode and NOT interactive mode. If it starts in login mode then it will source your .bash_profile. This worked for me, hopefully it will help you!