2019-06-04 20:26:53 -07:00
|
|
|
.\" Manpage for ask.
|
|
|
|
.\" Contact bruce@bruce-hill.com to correct errors or typos.
|
2019-06-13 15:30:01 -07:00
|
|
|
.TH man 8 "4 June 2019" "1.0" "ask manual page"
|
2019-06-04 20:26:53 -07:00
|
|
|
.SH NAME
|
|
|
|
ask \- A tiny command line tool for getting user input
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B ask
|
2019-11-01 06:43:06 -07:00
|
|
|
[\fI-Q\fR|\fI--quickpick\fR]
|
|
|
|
[\fI-P\fR|\fI--password\fR]
|
|
|
|
[\fI-0\fR|\fI--read0\fR]
|
|
|
|
[\fI-y\fR|\fI--yes\fR]
|
|
|
|
[\fI-n\fR|\fI--no\fR]
|
|
|
|
[(\fI-H \fR|\fI--history=\fR) name]
|
|
|
|
[\fI-h\fR|\fI--help\fR]
|
|
|
|
[\fI-v\fR|\fI--version\fR]
|
|
|
|
[(\fI-q\fR |\fI--query=\fR) initial]
|
|
|
|
[(\fI-p\fR |\fI--prompt=\fR) prompt]
|
|
|
|
[\fIoptions...\fR]
|
2019-06-04 20:26:53 -07:00
|
|
|
.SH DESCRIPTION
|
|
|
|
\fBask\fR is a tiny console application that displays a prompt, gets user input
|
|
|
|
(with line editing and fuzzy finding functionality), and prints the result to
|
|
|
|
standard output
|
|
|
|
.SH OPTIONS
|
2019-11-01 06:43:06 -07:00
|
|
|
.B \-Q
|
2019-06-04 20:26:53 -07:00
|
|
|
.B \--quickpick
|
|
|
|
When used with fuzzy finding, as soon as exactly one match is found, exit and
|
|
|
|
print it.
|
|
|
|
|
2019-06-06 17:46:59 -07:00
|
|
|
.B \-P
|
2019-06-04 20:26:53 -07:00
|
|
|
.B \--password
|
|
|
|
Use password mode, which does not print user input as it's being typed.
|
|
|
|
|
2019-11-01 06:43:06 -07:00
|
|
|
.B \-0
|
|
|
|
.B \--read0
|
|
|
|
Read input delineated by NULL bytes instead of newlines.
|
|
|
|
|
2019-06-04 20:26:53 -07:00
|
|
|
.B \-v
|
|
|
|
.B \--version
|
|
|
|
Print \fBask\fR's version and exit.
|
|
|
|
|
|
|
|
.B \-h
|
|
|
|
.B \--help
|
2019-06-06 17:46:59 -07:00
|
|
|
Print \fBask\fR's usage and exit.
|
2019-06-04 20:26:53 -07:00
|
|
|
|
2019-11-01 06:43:06 -07:00
|
|
|
.B \-q <query>
|
|
|
|
.B \--query=<query>
|
2019-06-04 20:26:53 -07:00
|
|
|
If given, pre-populate the user input with this value.
|
|
|
|
|
2019-11-01 06:43:06 -07:00
|
|
|
.B \-p <prompt>
|
|
|
|
.B \--prompt=<prompt>
|
2019-06-06 17:46:59 -07:00
|
|
|
If provided, display the given prompt in bold. If the \fI-p\fR and
|
|
|
|
\fI--prompt=\fR flags are not used, the first positional argument is used as
|
|
|
|
the prompt, or \fB"> "\fR if there are no positional arguments.
|
|
|
|
|
2019-11-01 06:43:06 -07:00
|
|
|
.B \-H <file>
|
|
|
|
.B \--history=<file>
|
|
|
|
Use the given file as a history file. With a history file, you can browse
|
|
|
|
previously selected values with the up/down arrow keys.
|
|
|
|
|
2019-06-06 17:46:59 -07:00
|
|
|
.B \-y
|
|
|
|
.B \--yes
|
|
|
|
Quickpick between "y" and "n" with "[Y/n]" appended to the prompt, exiting with
|
|
|
|
success if "n" is not chosen.
|
|
|
|
|
|
|
|
.B \-n
|
|
|
|
.B \--no
|
|
|
|
Quickpick between "y" and "n" with "[y/N]" appended to the prompt, exiting with
|
|
|
|
failure if "y" is not chosen.
|
2019-06-04 20:26:53 -07:00
|
|
|
|
|
|
|
.B options...
|
|
|
|
If additional command line arguments are provided, or if any input is piped in,
|
|
|
|
\fBask\fR will operate in fuzzy finding mode, attempting to pick one of the
|
|
|
|
given options.
|
|
|
|
|
|
|
|
.SH EXAMPLES
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
foo="`ask 'What is foo? '`"
|
|
|
|
Store user input in a variable. (Equivalent of \fBread -p 'What is foo? ' foo\fR)
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B
|
|
|
|
rm "`ls | ask 'Delete file: '`"
|
|
|
|
Fuzzy find a file. (Equivalent of \fBrm "`ls | fzf --prompt='Delete file: '`"\fR)
|
|
|
|
|
|
|
|
.TP
|
|
|
|
.B
|
2019-06-06 17:46:59 -07:00
|
|
|
if ask -y 'Do thing? '; then dothing; fi
|
2019-06-04 20:26:53 -07:00
|
|
|
Ask user for confirmation (default: yes).
|
|
|
|
|
|
|
|
.SH AUTHOR
|
|
|
|
Bruce Hill (bruce@bruce-hill.com)
|