Argc

CI Crates

Easily parse cli arguments in bash.

Install

With cargo

cargo install argc

Binaries on macOS, Linux, Windows

Download from Github Releases, unzip and add argc to your $PATH.

GitHub Actions

extractions/setup-crate can be used to install just in a GitHub Actions workflow.

yaml - uses: extractions/setup-crate@v1 with: owner: sigoden name: argc

Usage

demo

To write a command-line program with argc, we only need to do two things:

  1. Describe the options, parameters, and subcommands in comments.
  2. Call the following command to entrust argc to process command line arguments for us

sh eval $(argc "$0" "$@")

Argc will do the following for us:

  1. Extract flag/option/subcommand definitions from comments.
  2. Parse command line arguments according to the definition.
  3. If arguments are invalid, output error message or help information.
  4. If everything is ok, output parsed variables.
  5. If there is a subcommand, call the subcommand function.

We can directly use variables corresponding to flags/options/positional parameters.

Comment Tags

argc parses cli definition from comment tags.

@cmd

@cmd [string]

Define a subcommand

```sh

@cmd Upload a file

upload() { }

@cmd Download a file

download() { } ```

@alias

@alias <name...>

Add aliases

```sh

@cmd

@alias t,tst

test() { } ```

@option

@option [short] <long>[modifier] [notation] [help string]

Add a option.

sh # @option --foo A option # @option -f --foo A option with short alias # @option --foo <PATH> A option with notation # @option --foo! A required option # @option --foo* A option with multiple values # @option --foo+ A required option with multiple values # @option --foo=a A option with default value # @option --foo[a|b] A option with choices # @option --foo[=a|b] A option with choices and default value # @option --foo![a|b] A required option with choices # @option -f --foo <PATH> A option with short alias and notation

@flag

@flag [short] <long> [help string]

Adds a flag.

```sh

@flag --foo A flag

@flag -f --foo A flag with short alias

```

@arg

@arg <name>[modifier] [help string]

Adds a positional argument.

```sh

@arg value A positional argument

@arg value! A required positional argument

@arg value* A positional argument support multiple values

@arg value+ A required positional argument support multiple values

@arg value=a A positional argument with default value

@arg value[a|b] A positional argument with choices

@arg value[=a|b] A positional argument with choices and default value

@arg value![a|b] A required positional argument with choices

```

@help

@help string

Define help subcommand.

```sh

@help Print help information

```

Meta Tag

```sh

@describe A demo cli

@version 2.17.1

@author nobody nobody@example.com

```

Shell Completion

completion scripts are available for bash/zsh/powershell.

All argc scripts share the same completion function. To add completion to a argc script, simply add the script name to $ARGC_SCRIPTS.

License

Copyright (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.