Is it possible to have multiples options with more than one argument in docopt, without knowing the number of these arguments?
I would like to do something like this with a variable number of arguments:
Usage:
myprog.py --option1 ARG1 ARG2... --option2 ARG3 ARG4 ARG5...
I tried to use <arg>...
but it only works as positional argument.
Thanks for help.