We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
julia> using ArgParse julia> settings = ArgParseSettings(); julia> @add_arg_table! settings begin "cmd" action = :command end; julia> @add_arg_table! settings["cmd"] begin "--opt1" required = true "--opt2" required = false end; julia> parse_args(["cmd", "-h"], settings) usage: <PROGRAM> cmd --opt1 OPT1 [--opt2 OPT2] [-h] optional arguments: --opt1 OPT1 --opt2 OPT2 -h, --help show this help message and exit
The text was updated successfully, but these errors were encountered:
This is not limited to commands; the issue is actually a duplicate of #108
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: