Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whenever I open a new tab in Terminal using Cmd + T, it opens bash in the same directory, as the previous tab. This works fine when I'm in the ~ directory, but if I'm anywhere else, I get an error loading .bashrc

Last login: Sat Oct 15 21:10:00 on ttys002
-bash: .bashrc: No such file or directory
Jakub-Arnolds-MacBook-Pro:projects darth$ 

It looks like .bashrc is loaded via relative and not absolute path, because if I do source ~/.bashrc, everything works smoothly.

loaded bashrc

I think this is a OS X Lion related problem, because before the upgrade from Snow Leopard, I didn't have the same issue. But that might be caused by Terminal always opening at ~, I don't remember if it tried to open the same directory.

However the question remains the same, how can I make Terminal load ~/.bashrc via absolute path, and not relative?

share|improve this question

closed as off topic by Shawn Chin, d_r_w, Seki, keyboardsurfer, legoscia Apr 2 at 15:46

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 58 down vote accepted

Terminal opens a login shell. This means, ~/.bash_profile will get executed, ~/.bashrc not. The solution on most systems is to „require“ the ~/.bashrc in the ~/.bash_profile: just put this snippet in your ~/.bash_profile:

[[ -s ~/.bashrc ]] && source ~/.bashrc
share|improve this answer
Could anyone explain what the [[ -s /file/path ]] is doing? Trying to Google for an explanation isn't too easy. – shamess Jan 6 at 2:23
1  
From man bash: -s file True if file exists and has a size greater than zero. – ckruse Jan 6 at 11:55

Renaming .bashrc to .profile (or soft-linking the latter to the former) should also do the trick. See here.

share|improve this answer
1  
I think this is the cleanest solution – mariosangiorgio Aug 11 '12 at 10:58

I have the following in my ~/.bash_profile:

if [ -f ~/.bashrc ]; then . ~/.bashrc; fi

If I had .bashrc instead of ~/.bashrc, I'd be seeing the same symptom you're seeing.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.