A bash cli framework, also a task runner.
To write a command-line program with Argc, we only need to do two things:
sh
eval $(argc --argc-eval "$0" "$@")
Argc will do the following for us:
We can easily access the corresponding flags/options/arguements through their associated variables.
The @cmd
, @arg
, @option
are comment tags, see docs/comment-tag for more details.
Argc will enter the task runner mode if you do not activate its other modes with the --argc-*
option.
What argc does in task runner mode are: locate bash, search for argcfile
in the current project and its parent directory, then run argcfile with bash.
argcfile
is a plain shell script, you can run it viabash argcfile
.
Argc is written in rust, is cross-platform, is a single executable file less than 1M without any dependencies.
Bash is already builtin in macos/linux. On Windows, most developers already have git installed, argc uses the bash that ships with git.
Argc/argcfile is a cross-platform task runner solution.
Use the bash you are most familiar with, no need to learn another language or set of syntax.
GNU tools( ls
, rm
, grep
, find
, sed
, awk
, etc..) are also avaiable, Don't worry about windows incompatibility.
Argc also provides bash
, zsh
, powershell
completion scripts to prompt for tasks and options in argcfile
, See completions
See docs/task-runner for more details.
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
``` A bash cli framework, also a task runner - https://github.com/sigoden/argc
USAGE:
argc --argc-eval SCRIPT [ARGS ...] Print code snippets for eval $(argc --argc-eval "$0" "$@")
argc --argc-compgen SCRIPT [ARGS ...] Print commands and options as completion candidates
argc --argc-argcfile Print argcfile path
argc --argc-help Print help information
argc --argc-version Print version information
```
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.