Dear members,

I want my application displaying following help on command line:
--long-option=VALUE

Having read instructions on http://commons.apache.org/cli/usage.html I wrote 
following code for common-cli-1.2:
options.addOption(
       OptionBuilder.withLongOpt("long-option")
         .withValueSeparator('=')
         .hasArg()
         .withArgName("VALUE")
         .create());

But the result is:
--long-option <VALUE>

How do I force common-cli to output --long-option=VALUE instead of 
--long-option <VALUE>?

BTW: parsing the command line argument "--long-option=VALUE" works great.

Is using cli-2 still the only chance as I found in this list posted by David 
<[email protected]> on  Mon, 24 Apr 2006 09:01:35 GMT?

bye
Thomas
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to