Several options with multiple arguments #61
Unanswered
OliverSchmitz
asked this question in
Q&A
Replies: 1 comment
-
The reason for this is that the way you specified the arguments:
Is equivalent to:
I think what you want is to use a
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
after first successful experiments with Lyra I'm now stuck with something. I try to apply multiple arguments to several options, like this:
when executing with
./testargs --optionA=ON a1 a2 a3 --optionB=ON b1 b2
I'd expect to get a1, a2, a3 in argsA and b1,b2 in argsB. However, all end up in argsA, and --optionB seems not to be recognised. The usage info from the help looks ok imo. The output for info:Am I doing something entirely wrong, or is there another way to obtain the arguments per option? Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions