Add folder to PATH
To add a folder to your PATH
, add the following to your bash config:
1
export PATH="$PATH:/foo/bar"
To check what is on your path, run:
1
echo $PATH
This post is licensed under CC BY 4.0 by the author.
To add a folder to your PATH
, add the following to your bash config:
1
export PATH="$PATH:/foo/bar"
To check what is on your path, run:
1
echo $PATH