clarify install
This commit is contained in:
parent
74f81f519c
commit
5f6e47244e
44
README.md
44
README.md
|
@ -14,6 +14,27 @@ Windows: stores PATH in the registry.
|
||||||
|
|
||||||
Mac & Linux: stores PATH in `~/.config/envman/PATH.sh`
|
Mac & Linux: stores PATH in `~/.config/envman/PATH.sh`
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
1. [Download](#user-content-downloads)
|
||||||
|
2. Add to `PATH`
|
||||||
|
|
||||||
|
#### Windows
|
||||||
|
|
||||||
|
```cmd
|
||||||
|
mkdir %userprofile%\bin
|
||||||
|
move pathman.exe %userprofile%\bin\pathman.exe
|
||||||
|
%userprofile%\bin\pathman.exe add ~\bin
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Mac, Linux, etc
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ~/.local/bin
|
||||||
|
mv ./pathman ~/.local/bin
|
||||||
|
pathman add ~/.local/bin
|
||||||
|
```
|
||||||
|
|
||||||
## Downloads
|
## Downloads
|
||||||
|
|
||||||
### MacOS
|
### MacOS
|
||||||
|
@ -99,28 +120,7 @@ chmod +x ./pathman
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## Install
|
# CLI Help (API)
|
||||||
|
|
||||||
1. Download (see below)
|
|
||||||
2. Add to `PATH`
|
|
||||||
|
|
||||||
**Windows**
|
|
||||||
|
|
||||||
```cmd
|
|
||||||
mkdir %userprofile%\bin
|
|
||||||
move pathman.exe %userprofile%\bin\pathman.exe
|
|
||||||
%userprofile%\bin\pathman.exe add ~\bin
|
|
||||||
```
|
|
||||||
|
|
||||||
**Mac, Linux, etc**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir -p ~/.local/bin
|
|
||||||
mv ./pathman ~/.local/bin
|
|
||||||
pathman add ~/.local/bin
|
|
||||||
```
|
|
||||||
|
|
||||||
# CLI / API
|
|
||||||
|
|
||||||
# add
|
# add
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue