Kotlin / kotlinx-cli

Pure Kotlin implementation of a generic CLI parser.
Apache License 2.0
913 stars 70 forks source link

Mixed Prefix Style #87

Open eiennohito opened 2 years ago

eiennohito commented 2 years ago

Right now the parser supports either --foo arg style as OptionPrefixStyle.LINUX or --foo=arg style as OptionPrefixStyle.GNU, but not both at the same time (as getopt or rust CLI libraries usually do).