You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the CLI interface doesn't allow common patterns used by most CLI tools, concretely: "don't require args to be passed after whitespace, also accept after = and when being a short arg allow them directly (-T4 is same as -T 4)
The text was updated successfully, but these errors were encountered:
corneliusroemer
changed the title
Follow GNU CLI conventions for options: e.g. accept -T=4 and -T4 not just -T 4`
Follow GNU CLI conventions for options: e.g. accept -T=4 and -T4 not just -T 4Jul 18, 2024
Uh oh!
There was an error while loading. Please reload this page.
I've noticed that the CLI interface doesn't allow common patterns used by most CLI tools, concretely: "don't require args to be passed after whitespace, also accept after
=
and when being a short arg allow them directly (-T4
is same as-T 4
)Right now I get this:
This is a great guide for making nice CLIs: https://clig.dev/#arguments-and-flags
Some concrete libraries you could use:
The text was updated successfully, but these errors were encountered: