| Crates.io | how-install |
| lib.rs | how-install |
| version | 1.0.0 |
| created_at | 2022-06-08 08:34:04.043348+00 |
| updated_at | 2022-06-08 08:34:04.043348+00 |
| description | A CLI for helping find how to install a given command. |
| homepage | |
| repository | https://github.com/jam1garner/how-install |
| max_upload_size | |
| id | 601925 |
| size | 63,662 |
A CLI for helping find how to install a given command.
This would be nothing without the core functionality, none of which is mine.
Huge thanks to:
cargo install how-install
Let's say you want to know how to install make on your distro. You can use how-install to take care of this:
$ how-install make
TLDR
Task runner for targets described in Makefile.
Mostly used to control the compilation of an executable from source code.
More information: <https://www.gnu.org/software/make/manual/make.html>.
Call the first target specified in the Makefile (usually named "all"):
make
Call a specific target:
make target
[...]
INSTALL
sudo pacman -S make
how-install
A CLI for helping find how to install a given command
Credit to:
- https://tldr.sh for descriptions
- https://dbrgn.github.io/tealdeer/ for tldr console output
- https://command-not-found.com/ for command install information
USAGE:
how-install [OPTIONS] <CMD>
ARGS:
<CMD>
Command to lookup how to install
OPTIONS:
--distro <DISTRO>
OS to install for
[possible values: debian, ubuntu, alpine, arch, kali, centos, fedora, raspbian, docker]
-h, --help
Print help information
-i, --install
Run install command
--no-tldr
Don't output TLDR info about the given command
-y
Automatically run install command without prompting