How Do I Edit PATH Bash Profile On OSX
How Do I Edit PATH Bash Profile On OSX
stackoverflow.com /questions/30461201/how-do-i-edit-path-bash-profile-on-osx
or
I have tried:
My problem:
I misspelled it, but when I closed the terminal and went back it was gone, so I tried again:
This time, I typed the command correctly but, when I closed the terminal, my settings disappeared again.
Thanks!
4 Answers
1/5
up vote 122 down vote You have to open that file with a text editor and then save it.
accepted
touch ~/.bash_profile; open ~/.bash_profile
It will open the file with TextEdit, paste your things and then save it. If you open it
again you'll find your edits.
nano ~/.bash_profile
mate ~/.bash_profile
vim ~/.bash_profile
But if you don't know how to use them, it's easier to use the open approach.
cat >
~/.bash_profile
(now cat waits for input: paste the two export definitions and then hit ctrl-D).
Alessandro Vendruscolo
7,72222336
2/5
up vote A bit more detailed for beginners:
28 down
vote First get sure the .bash_profile file is existing? Remember that the .bash_profile file isn't there by
default. You have to create it by your own.
Go into your user folder in finder. The .bash_profile file should be findable there. ->
HD/Users/[USERNAME]
Remember: Files with a point at the beginning '.' are hidden by default.
killall Finder
Open terminal app and switch into user folder with simple command:
cd
touch .bash_profile
Second if you can't memorise the nerdy commands for save and close in vim, nano etc (the way
recommended above) the easiest way to edit is to open .bash_profile file in your favored code
editor (Sublime etc.).
Finder -> User folder. Right click -> open with : Sublime Text (or other code editor). Or drag it on
app in dock.
… and there you can edit it, pass export commands in new lines.
3/5
up For beginners: To create your .bash_profile file in your home directory on MacOS, run:
vote 2
down nano ~/.bash_profile
vote
Then you can paste in the following:
https://gist.github.com/mocon/0baf15e62163a07cb957888559d1b054
As you can see, it includes some example aliases and an environment variable at the bottom.
One you're done making your changes, follow the instructions at the bottom of the Nano editor
window to WriteOut (Ctrl-O) and Exit (Ctrl-X). Then quit your Terminal and reopen it, and you will
be able to use your newly defined aliases and environment variables.
Myles O'Connor
463
up vote Mac OS X doesn't store the path in .bash_profile, but .profile, since Mac OS X is a branch of *BSD
1 down family. You should be able to see the export blah blah blah in .profile once you do cat .profile on
vote your terminal.
neemo810707
193
Your Answer
Sign up or log in
Post as a guest
4/5
By posting your answer, you agree to the privacy policy and terms of service.
Not the answer you're looking for? Browse other questions tagged osx path
terminal osx-yosemite or ask your own question.
5/5