Am I mistaken or is there no way to have repeated Boolean options (flags), such as -vvv (say, for increasing a verbosity level)? With pflag, this is possible.
Intuitively, there should be a cmd.BoolsOpt() method enabling this (either operating on an int value or a []bool slice).
Opinions?
Am I mistaken or is there no way to have repeated Boolean options (flags), such as
-vvv(say, for increasing a verbosity level)? Withpflag, this is possible.Intuitively, there should be a
cmd.BoolsOpt()method enabling this (either operating on anintvalue or a[]boolslice).Opinions?