how-install

Crates.iohow-install
lib.rshow-install
version1.0.0
sourcesrc
created_at2022-06-08 08:34:04.043348
updated_at2022-06-08 08:34:04.043348
descriptionA CLI for helping find how to install a given command.
homepage
repositoryhttps://github.com/jam1garner/how-install
max_upload_size
id601925
size63,662
(jam1garner)

documentation

README

how-install

A CLI for helping find how to install a given command.

Credit

This would be nothing without the core functionality, none of which is mine.

Huge thanks to:

Install

cargo install how-install

Example Usage

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

Command Arguments

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
Commit count: 1

cargo fmt