Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adding ~/bin directory in your path [closed]

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)

like image 511
FluxEngine Avatar asked May 03 '13 20:05

FluxEngine


1 Answers

Add this to .bash_profile:

export PATH="$PATH":~/bin

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

like image 86
user1613254 Avatar answered Oct 29 '22 19:10

user1613254