fclp / fluent-command-line-parser

A simple, strongly typed .NET C# command line parser library using a fluent easy to use interface
Other
530 stars 86 forks source link

Passing multiple parameters with the same name #103

Open GreatTeacherBasshead opened 6 years ago

GreatTeacherBasshead commented 6 years ago

Is it possible to pass multiple parameters with same name? For example:

  1. docker run --env VAR1=value1 --env VAR2=value2 --env VAR3=value3 ubuntu env
  2. terraform apply -var 'var1=value1' -var 'var2=value2' -var 'var3=value3'
siywilliams commented 5 years ago

What behaviour would you expect ?

I suspect that the last parameter/value pair processed will be written to the parameter variable.

GreatTeacherBasshead commented 5 years ago

The idea is to be able to create dynamic variables in the same way as in docker or terraform.