A sh/bash cli framework. Generate cli inteface from comments
Write the following demo.sh
script
```sh
```
Argc parses command arguments and prints variables
sh
argc demo.sh --grep FOO --grep BAR BAZ -q README.md CHANGELOG.md
argc_quit=1
argc_grep=( "FOO" "BAR" "BAZ" )
argc_color="auto"
argc_pathspec=( "README.md" "CHANGELOG.md" )
Argc recognizes -h
option and prints help text
sh
argc demo.sh -h
``` demo
USAGE:
demo [OPTIONS]
ARGS:
OPTIONS:
--color
Argc identifies parameter errors and prints error text
argc demo.sh --color=none
```
error: "none" isn't a valid value for '--color
USAGE:
demo --color
For more information try --help
```
How Argc works:
```sh res=$(argc $0 "$@") if [ $? -eq 1 ]; then echo -n $res # print help text or error messages exit 1 fi eval "$res" # load generated variables
echo ${argc_pathspec[@]} ```
The above code is too redundant, and Argc provides the -e
option to rescue
```sh eval "(argc -e $0 "$@")"
echo ${argc_pathspec[@]} ```
Argc generates parsing rules and help documentation based on tags (fields marked with @
in comments).
```sh
log() { echo git log ${argc_refspec[@]} } ```
``` test2 2.17.1 nobody nobody@example.com A fictional versioning CLI
USAGE:
test2 [OPTIONS]
OPTIONS:
--git-dir
SUBCOMMANDS: help Print this message or the help of the given subcommand(s) log Shows the commit log. ```
```sh
```
Define description
```sh
```
Define version
```sh
```
Define author
```sh
log() { } ``` Define subcommand
```sh
```
Define value option
The symbol after the long option name is the modifier, such as *
in --grep*
*
: occur multiple times, optional+
: occur multiple times, required!
: required=value
: default value[a|b|c]
: choices[=a|b|c]
: choices, first is default.Used to indicate that the option is a value option, other than a flag option.
If not provided, the option name is used as a placeholder by default.
You can use placeholder hint option value types <NUM>
, <PATH>
, <PATTERN>
, <DATE>
```sh
```
Define flag option
```sh
``` Define positional arguement
*
: occur multiple times, optional+
: occur multiple times, required!
: requiredCopyright (c) 2022 argc-developers.
argc is made available under the terms of either the MIT License or the Apache License 2.0, at your option.
See the LICENSE-APACHE and LICENSE-MIT files for license details.