WIP: initial draft of envpath

Cette révision appartient à :
AJ ONeal 2019-07-18 01:19:16 -06:00
Parent c88dcf22b6
révision 7ca8158a1c
1 fichiers modifiés avec 16 ajouts et 0 suppressions

16
envpath/README.md Fichier normal
Voir le fichier

@ -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"
```