diff --git a/envpath/README.md b/envpath/README.md new file mode 100644 index 0000000..37903b6 --- /dev/null +++ b/envpath/README.md @@ -0,0 +1,16 @@ +# envpath + +**WIP** + +An example of getting, setting, and updating PATHs on \*nix (Linux, Mac, etc). + +```bash +envpath append /opt/whatever/bin +``` + +```bash +New sessions will have /opt/whatever/bin in their PATH. +To update this session run + + export PATH="$PATH:/opt/whatever/bin" +```