You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
nice, that makes sense, it is a little confusing though. So the last letter in a group is permitted to be a non-boolean?user290257– user2902572018-09-05 04:45:23 +00:00Commented Sep 5, 2018 at 4:45
-
1This would only work if one of the grouped options required a parameter. Otherwise this would be ambiguous what followed. I would probably just decide at that point which non-boolean option is less used and require it to be specified outside the group (otherwise, good luck explainng that to the client).Neil– Neil2018-09-05 08:24:46 +00:00Commented Sep 5, 2018 at 8:24
-
Theoretically, you could freely intermix as many flags and options requiring parameters as you want, as long as you specify unambiguously what they mean. For example, you could specify that the arguments following the group are bound to the parameters in the order that they appear in the group. There are really two questions you have to ask: can I do it? (Can I find a unambiguous specification, such that the computer can understand it?) And should I do it? (Can I find an understandable, simple explanation such that the user can understand it?)Jörg W Mittag– Jörg W Mittag2018-09-05 10:39:17 +00:00Commented Sep 5, 2018 at 10:39
-
1In other words, to use the exact words that you used in your question: "possible" and "advisable" are really two different questions.Jörg W Mittag– Jörg W Mittag2018-09-05 10:40:44 +00:00Commented Sep 5, 2018 at 10:40
-
Well theoretically, you could intermix as many flags and options requiring parameters as you want, ambiguous or otherwise. I think the goal here is to make it easy to use, and that has to take priority over any other decision here, regardless of feasibility.Neil– Neil2018-09-05 13:25:28 +00:00Commented Sep 5, 2018 at 13:25
|
Show 1 more comment
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you