-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to pass and retain subsequent arguments to a verb with exact format? #902
Comments
You're basically asking for everything after the verb to be included in the |
✅ Yes, exactly. |
I've never seen a mechanism like this, but it would be serviced deep in the tokenizer if it were there. My guess is the best you can do is put the whole expression in quotes, and then tokenize it yourself as a single |
I have also thought of that, or simply use a verb without any options at all (to detect the command) and fallback to the original args object that is passed to the binary, thanks. |
Alternately, do the check prior to even calling the parser:
|
I am trying to create a verb that includes all subsequent arguments. I require it to retain the exact format in which it is passed to the verb. My intention is to forward the arguments as a shell command. I have tried the following configuration:
But unfortunately, I am encountering errors indicating that options
f
,foo
, andbar
are missing for this test argument:As a workaround, I can fall back to the original
args
, but I am curious if there is any chance to utilize the capabilities thatCommandLineParser
offers. Does anyone have an idea on how to configureCommandLineParser
to achieve this?The text was updated successfully, but these errors were encountered: