kotlinx-cli icon indicating copy to clipboard operation
kotlinx-cli copied to clipboard

Pure Kotlin implementation of a generic CLI parser.

Results 37 kotlinx-cli issues
Sort by recently updated
recently updated
newest added

https://github.com/Kotlin/kotlinx-cli/blob/f917f17ac83c2f2f60f6fb4094bdd82b6eff93fe/core/commonMain/src/ArgParser.kt#L247 "whuch" ? "which"?

It would be nice to be able to provide a description for the ArgParser, that gets printed above or below the `Usage: ...` line in the help message. This shouldn't...

Hello, Is there a way to transform the value of an argument like: ```kotlin val parser = ArgParser(args) val file: File by parser.option(ArgType.String, transform = { File(it) }) ``` instead...

Thanks for this project. Today, I am using https://github.com/airlift/airline for most my CLI parsing and it has better support for Single and multi-command modes. Does kotlinx.cli have any plans to...

https://docs.github.com/en/repositories/archiving-a-github-repository/archiving-repositories Although the top of the README says **This library is obsolete**, it is easy to scroll past when looking for the general shape of the library to see if...

Next entries are considered options when `--` is encountered in GNU mode. However, there is no check to ensure that they exist. In the following test case: ``` kotlin val...

found-by-fuzzing