Command Line Utility for Stylish Interactive Prompts
(like fzf but for all types)
(uses dialoguer underneath)
Get started with Enquirer, the most powerful command line utility for creating interactive CLI prompts.
enquirer
is available on Linux, macOS
$ brew tap termapps/tap
$ brew install enquirer
This is recommended way for installation on macOS since updating to the new version is easy.
$ cargo install enquirer
Pre-built binary executables are available at releases page for macOS (64bit), Linux (64bit, 32bit).
Download and unarchive the binary then put the executable in $PATH
.
The main reason I created this tool is to use it as an stylish interactive and user-friendly prompt for bash scripting.
```bash
TRUE="true" CONFIRM=$(enquirer confirm -m "Do you want to continue?" -d)
if [ "$TRUE" = "$CONFIRM" ]; then echo "Continuing ..." else echo "Thanks for using this tool. Quitting ..." exit fi ```
See prompts for more information on subcommands.
``` enquirer 0.2.0 Command Line Utility for Stylish Interactive Prompts
USAGE:
enquirer [FLAGS]
FLAGS: -h, --help Prints help information --no-color Disable colors in the prompt -V, --version Prints version information
SUBCOMMANDS:
confirm Prompt that returns true
or false
help Prints this message or the help of the given subcommand(s)
input Prompt that takes user input and returns a string
secret Prompt that takes user input, hides it from the terminal, and returns a string
```
If you want the dialoguer theme used in this tool you can add this package to your Cargo.toml
```rust use dialoguer::Confirmation; use enquirer::ColoredTheme;
fn main() { let prompt = Confirmation::withtheme(&ColoredTheme::default()) .withtext("Do you want to continue?") .with_default(true);
if prompt.interact()? {
println!("Looks like you want to continue");
} else {
println!("nevermind then :(");
}
} ```
Prompt that returns true
or false
(as strings).
``
enquirer-confirm 0.2.0
Prompt that returns
trueor
false`
USAGE:
enquirer confirm [FLAGS] [OPTIONS] --message
FLAGS:
-d, --default Default value for the prompt is true
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-m, --message
Prompt that takes user input and returns a string.
``` enquirer-input 0.2.0 Prompt that takes user input and returns a string
USAGE:
enquirer input [FLAGS] [OPTIONS] --message
FLAGS:
-a, --allow-empty Allow empty input. Conflicts with default
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-d, --default
Prompt that takes user input, hides it from the terminal, and returns a string
``` enquirer-secret 0.2.0 Prompt that takes user input, hides it from the terminal, and returns a string
USAGE:
enquirer secret [FLAGS] [OPTIONS] --message
FLAGS: -a, --allow-empty Allow empty secret -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --confirm
Please see CHANGELOG.md.
MIT/X11
Report here.
Pavan Kumar Sunkara (pavan.sss1991@gmail.com)