We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here we have the actual command and a brief listing of all options and positional parameters.
For subcommands there will be the space, unlike the manual page NAME section as shown in #154
NAME
example from git grep
git grep
GIT-GREP(1) Git Manual GIT-GREP(1) NAME git-grep - Print lines matching a pattern SYNOPSIS git grep [-a | --text] [-I] [--textconv] [-i | --ignore-case] [-w | --word-regexp] [-v | --invert-match] [-h|-H] [--full-name] [-E | --extended-regexp] [-G | --basic-regexp] [-P | --perl-regexp] [-F | --fixed-strings] [-n | --line-number] [--column] [-l | --files-with-matches] [-L | --files-without-match] [(-O | --open-files-in-pager) [<pager>]] [-z | --null] [ -o | --only-matching ] [-c | --count] [--all-match] [-q | --quiet] [--max-depth <depth>] [--[no-]recursive] [--color[=<when>] | --no-color] [--break] [--heading] [-p | --show-function] [-A <post-context>] [-B <pre-context>] [-C <context>] [-W | --function-context] [--threads <num>] [-f <file>] [-e] <pattern> [--and|--or|--not|(|)|-e <pattern>...] [--recurse-submodules] [--parent-basename <basename>] [ [--[no-]exclude-standard] [--cached | --no-index | --untracked] | <tree>...] [--] [<pathspec>...]
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
A simple automated synopsis could be:
no positional options
app-name [options]
with two positional options, a path and a number
app-name [options] [--] <PATH> <NUMBER>
Maybe I'll work on a simple version. I noticed that it is very easy to forget updating the synopsis when you change something in the argument parsing.
No branches or pull requests
Here we have the actual command and a brief listing of all options and positional parameters.
For subcommands there will be the space, unlike the manual page
NAME
section as shown in #154example from
git grep
The text was updated successfully, but these errors were encountered: