We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815df01 commit 09811e6Copy full SHA for 09811e6
README.md
@@ -205,9 +205,10 @@ has several useful features compared to querying the service directly with `curl
205
To install the client:
206
207
```
208
- mkdir -p ~/bin/
209
- curl https://cht.sh/:cht.sh > ~/bin/cht.sh
210
- chmod +x ~/bin/cht.sh
+ PATH_DIR="$HOME/bin" # or another directory on your $PATH
+ mkdir -p "$PATH_DIR"
+ curl https://cht.sh/:cht.sh > "$PATH_DIR/cht.sh"
211
+ chmod +x "$PATH_DIR/cht.sh"
212
213
214
or to install it globally (for all users):
0 commit comments