Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Add executable files to your $PATH with bash

You can append to your system's PATH like so in your bash_profile:

export PATH="$PATH:~/my-scripts"

You can also symlink an executable into a prexisting folder in your PATH. For example:

ln -s my-script /usr/local/bin