A handy way to handle sh/bash cli parameters.
cargo install argc
Download from Github Releases, unzip and add argc to your $PATH.
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
To write a command-line program with argc, we only need to do two things:
sh
eval $(argc "$0" "$@")
Argc will do the following for us:
We can directly use variables corresponding to flags/options/positional parameters.
argc
loads cli definition from comment tags.
@cmd [string]
Define a subcommand
```sh
upload() { }
download() { } ```
@alias <name...>
Add aliases
```sh
test() { } ```
@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 [short] <long> [help string]
Adds a flag.
```sh
```
@arg <name>[modifier] [help string]
Adds a positional argument.
```sh
```
@help string
Define help subcommand.
```sh
```
```sh
```
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.
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.