Make beautiful bash cli with comments, also a command runner using bash.
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.
When argc is executed without the --argc-*
option, it will enter command runner mode. Argc will search for the argcfile
file in the current project and its parent directory and execute it.
argcfile
is to argc
what makefile
is to make
.
Note: in windows, you need to install git to provide bash for argc
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.
``` Bash cli utility - https://github.com/sigoden/argc
USAGE: argc [OPTIONS] [ARGS]
ARGS: