有没有办法使用 clap 为每个参数传递多个值?
例如,如果我输入这个
$ ./app —-color red, green, blue -—height 100 200
或这个
$ ./app —-color red —-color green —-color blue —-height 100 —-height 200
我应该得到这个:
color: red, green, blue
height: 100, 200
我知道该multiple(true)
选项,但我无法弄清楚如何像上面的示例中那样迭代多个值。