-
Notifications
You must be signed in to change notification settings - Fork 0
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
Is there a way to support --switch=parameter syntax ?? #8
Comments
Hi @rwilcox ! This package does not parse the command line syntax directly but instead simply leverages the command line arguments and flags reported by Racket's built-in current-command-line-arguments parameter. I did a quick google search to get a sense of how common the |
It’s in the libc docs, so I’m guessing it’s pretty common 😄 But OK, I may take a look at writing a command line program with the core utils, repro the issue and open a bug with Racket, that’s a good idea. |
You can probably just use the example in the docs on the built-in command line utilities, which should be runnable as is. E.g. "link-flags" there takes an argument at the command line. |
This has been on my radar for a while, but finally did something about it: racket/racket#4106 |
Given the following program --help generates help text that doesn't seem to support
--parameter=text
format, but--parameter text
CLI output:
(but thank you very much for making this little language!)
The text was updated successfully, but these errors were encountered: