WIP: initial draft of envpath

这个提交包含在:
AJ ONeal 2019-07-18 01:19:16 -06:00
父节点 c88dcf22b6
当前提交 7ca8158a1c
共有 1 个文件被更改,包括 16 次插入0 次删除

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