WIP: initial draft of envpath

This commit is contained in:
AJ ONeal 2019-07-18 01:19:16 -06:00
부모 c88dcf22b6
커밋 7ca8158a1c
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제

16
envpath/README.md Normal file
파일 보기

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