Skip to content

Instantly share code, notes, and snippets.

@hminnovation
Last active April 1, 2017 15:02
Show Gist options
  • Save hminnovation/c15e3e5b1a7e473d24ffeadf2a42f8cb to your computer and use it in GitHub Desktop.
Save hminnovation/c15e3e5b1a7e473d24ffeadf2a42f8cb to your computer and use it in GitHub Desktop.
Wrapping my head around the $PATH variable
  • echo $path shows everything currently on the path
  • Add a location to the path PATH="/Some/Folder/Somewhere/bin:$PATH"
  • Add a location as a variable
  • export THE_VARIABLE=/Some/Folder/Somewhere/bin
  • export PATH=$PATH:$THE_VARIABLE/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment