halp aims to help find the correct arguments for command-line tools by checking the predefined list of commonly used options/flags. Additionally, it provides a prompt for quick access to the manual page or cheat sheet of the given command.
If you deal with command-line tools often, it might take some time to figure out how to get help or check the version of a particular command (especially when shell completions are not available). In that case, you might try the most-known flags such as -h and -v but unfortunately not all the command-line tools follow these conventions (either due to conflicts with other flags or they just use another form). Instead of brute-forcing manually into getting help, you can run halp <command> and it will check the following arguments for you:
- for help:
-h,--help,help,-H - for version info:
-v,-V,--version,version
If one of these arguments succeeds (with exit code 0), it prints the output and exits. This way, you can get informed about the version and help in one single command. You can also customize this list with a configuration file or provide a list of arguments via command-line arguments.
On the other hand, if you really need help, you can use the plz subcommand which will prompt a selection for:
Example
Have you ever experienced this:
Whereas with halp:
$ halp cli_tool
(°ロ°) checking 'cli_tool -v'
(×﹏×) fail '-v' argument not found.
(°ロ°) checking 'cli_tool -V'
(×﹏×) fail '-V' argument not found.
(°ロ°) checking 'cli_tool -h'
(×﹏×) fail '-h' argument not found.
(°ロ°) checking 'cli_tool --help'
\(^ヮ^)/ success '--help' argument found!
Some CLI Tool Version 1.42.69
Usage:
cli_tool <flags> <args> [--parameter1 value1 --parameter2 value2 ...]
Installation
Cargo
halp can be installed from crates.io:
The minimum supported Rust version is 1.74.1.
Arch Linux
halp can be installed from the community repository using pacman:
Or you can install the available AUR packages using an AUR helper. For example,
Alternatively, you can clone the AUR package and then build it with makepkg. For example,
&& &&
Docker
Images
Docker builds are automated and images are available in the following registries:
Usage
The following commands can be used to get help for a binary inside the container:
Or you can provide a custom binary as follows (please note that you might get shared library errors):
Building
Custom Docker images can be built from the Dockerfile:
Binary releases
See the available binaries for different targets from the releases page. They are automated via Continuous Deployment workflow
Release tarballs are signed with the following PGP key: 0xFB41AE0358378256
Build from source
- Clone the repository.
&&
- Build.
CARGO_TARGET_DIR=target
Binary will be located at target/release/halp.
Usage
halp [OPTIONS] <CMD>
Options:
--check <ARG> Sets the argument to check
--no-version Disable checking the version information
--no-help Disable checking the help information
-c, --config <PATH> Sets the configuration file [env: HALP_CONFIG=]
-t, --timeout <S> Sets the timeout for the command [default: 5]
-v, --verbose Enables verbose logging
-h, --help Print help
-V, --version Print version
plz
halp [OPTIONS] plz <CMD>
Options:
-m, --man-cmd <MAN_CMD> Sets the manual page command to run
--cheat-sh-url <URL> Use a custom URL for cheat.sh [env: CHEAT_SH_URL=]
-p, --pager <PAGER> Sets the pager to use
--no-pager Disables the pager
-h, --help Print help
Examples
Check help and version (default)

Check a custom argument
(You can escape - with using \-.)
You can also provide multiple arguments as follows:
Disable defaults
Verbose logging
This will result in stderr/stdout being printed if there was an error. For example:
()
()
()
Get additional help (via plz)

Custom pager
To disable the pager:
Custom cheat.sh host URL
Configuration
halp can be configured with a configuration file that uses the TOML format. It can be specified via --config or HALP_CONFIG environment variable. It can also be placed in one of the following global locations:
<config_dir>/halp.toml<config_dir>/halp/halp.toml<config_dir>/halp/config
<config_dir> depends on the platform as shown in the following table:
| Platform | Value | Example |
|---|---|---|
| Linux | $XDG_CONFIG_HOME or $HOME/.config |
/home/orhun/.config |
| macOS | $HOME/Library/Application Support |
/Users/Orhun/Library/Application Support |
| Windows | {FOLDERID_RoamingAppData} |
C:\Users\Orhun\AppData\Roaming |
See halp.toml for the default configuration values.
Funding
If you find halp and/or other projects on my GitHub profile useful, consider supporting me on GitHub Sponsors or becoming a patron!
Contributing
See our Contribution Guide and please follow the Code of Conduct in all your interactions with the project.
License
Licensed under either of Apache License Version 2.0 or The MIT License at your option.
🦀 ノ( º _ º ノ) - respect crables!
Copyright
Copyright © 2023-2024, Orhun Parmaksız