https://github.com/unix/want
commands for humans.
https://github.com/unix/want
Last synced: 3 months ago
JSON representation
commands for humans.
- Host: GitHub
- URL: https://github.com/unix/want
- Owner: unix
- License: mit
- Created: 2019-04-12T06:05:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T14:50:40.000Z (over 3 years ago)
- Last Synced: 2025-03-18T00:43:46.749Z (3 months ago)
- Language: Shell
- Homepage: want.vercel.app
- Size: 525 KB
- Stars: 31
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## want
Run the shell command from GitHub without install.
Want is the tool I used to manage shell commands, you can try using Want by following the documentation below,
or by [adding some new commands](https://github.com/unix/want/issues/new). If you need to manage all the content yourself,
fork this repository and redeploy it.
### Setup
Depending on your terminal, choose a way to install:
- For "ZSH" users:
`echo 'want () { curl -sd "$*" https://want.unix.bio | bash -s --; }' >> ~/.zshrc`
`source ~/.zshrc`
- For "Bash" users (default on macOS or Linux):
`echo 'want () { curl -sd "$*" https://want.unix.bio | bash -s --; }' >> ~/.bashrc`
`source ~/.bashrc`
- For "fish" users:
Insert the following command in `~/.config/fish/config.fish`
```fish
function want
curl -sd $argv https://want.unix.bio | bash -s --
end
```and run `source ~/.config/fish/config.fish`.
- With sudo (Not recommended):
`echo 'want-sudo () { curl -sd "$*" https://want.unix.bio | sudo bash -s --; }' >> ~/.bashrc`
`source ~/.bashrc`
and run `want-sudo`.
### Run
After completing the **Setup** steps above, jsut run `want`.
### Features
- No packages, use immediately.
- Without symbols: `want npm proxy on` == `want npm_proxy_on`.
- List all commands: `want ls`.
- Auto search: returns similar results when not found.
### LICENSE
[MIT](https://raw.githubusercontent.com/unix/want/master/LICENSE)