Make beautiful bash cli with comments, also is a cross-platform bash command 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 option or parameter through the variable $argc_<name>
.
Try examples/demo.sh your self.
The @cmd
, @arg
, @option
is comment tag(fields marked with @
in comments), argc generates parsing rules and help documentation based on comment tags .
See docs/comment-tag.md for more details.
argc will enter the command runner mode if you do not activate its other modes with the --argc-*
option.
What argc does in command runner mode is: 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 throughbash argcfile
.
Argc is written in rust, It is cross-platform. It is a single executable file less than 1M without any dependencies. you just download it and put it into $PATH directory to install it.
Bash is already builtin in macos/linux. On Windows, most developers already have git installed, argc uses the bash that ships with git.
So argc/argcfile is a cross-platform command runner solution.
Use the bash you are most familiar with, no need to learn another language or set of syntax.
You can also freely use GNU tools like ls
, rm
, grep
, find
, sed
, awk
, etc. Don't worry about windows incompatibility.
See docs/command-runner.md for more details
argc --argc-completion demo.sh
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
``` Bash cli utility - https://github.com/sigoden/argc
USAGE: argc [OPTIONS] [ARGS]
ARGS: