-
Hello, can I use picocli to capture any (undefined) command and pass it further down the line with arguments attached to it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@Matiako I don't think picocli can provide any value in the use case you describe. From your description, all you need is to pass the user input as a String array to your downstream component... |
Beta Was this translation helpful? Give feedback.
@Matiako I don't think picocli can provide any value in the use case you describe.
Picocli's value is to parse the predefined options for predefined commands and provide help to end users explaining which options are available for which command.
From your description, all you need is to pass the user input as a String array to your downstream component...