1
I think I managed to break my Snow Leopard shell, but I'm not sure. Is there a way to reset all env variables to default?
1
I think I managed to break my Snow Leopard shell, but I'm not sure. Is there a way to reset all env variables to default?
1
Close terminal and re-open a new one. Any environments variables you set in the last session will be gone.
If the problem persists, you probably edited ~/.bashrc
or ~/.bash_profile
; edit them again and remove any changes (or if you want to get right back to the default OS X state, just remove them completely - a default OS X install has these files empty or non-existent).
1
One of the following:
. /etc/bash.bashrc
. ~/.bashrc
The two that start with "dot" source your startup files which will reset some of your environment variables (but may make your $PATH
variable longer - probably with no consequences).
Isn't it ~/.bashrc
, not ./bashrc
? – user1686 – 2010-01-07T13:37:06.927
What exactly did you do? – John T – 2010-01-07T08:09:44.173
And what is the error? – Felix – 2010-01-07T08:22:41.197
I was trying to install Sphinx4 from src. I changed a whole bunch of env variables to use the specific java library, but in the process made some bad changes so now no java program runs. – Ritwik Bose – 2010-01-07T10:03:55.143