6

I need to add ~/bin directory in your path.

But I am not sure what the actual command for this is, I know it goes in my .bash_profile

Does anyone know this, or a tutorial on how to set up a new .bash_profile for a terminal on a new mac (UNIX)

FluxEngine
  • 12,730
  • 14
  • 57
  • 83
  • This might help. http://stackoverflow.com/questions/5545715/how-do-i-add-usr-local-git-bin-to-the-path-on-mac-osx Else vim ~/.bash_profile will create a bash profile and then type into it export PATH=$PATH: – Shobit May 03 '13 at 20:36

1 Answers1

11

Add this to .bash_profile:

export PATH="$PATH":~/bin

If you don't have a .bash_profile, just create it.

user1613254
  • 418
  • 3
  • 8