CommandLineParseResult

class CommandLineParseResult<T : BaseCliktCommand<T>>(val invocation: CommandInvocation<T>, val originalArgv: List<String>, val expandedArgv: List<String>)

The result of parsing a command line.

Constructors

Link copied to clipboard
constructor(invocation: CommandInvocation<T>, originalArgv: List<String>, expandedArgv: List<String>)

Properties

Link copied to clipboard

The full argv after expanding any argument file tokens or aliases.

Link copied to clipboard

The root command that was parsed.

Link copied to clipboard

The original command line tokens that were passed to parse.