Uso la CLI de Apache Commons para analizar argumentos de línea de comandos.Apache Commons CLI nombres de valor de argumento múltiple en la opción -help
Estoy buscando una manera de mostrar múltiples nombres de valores de argumento en la ayuda. Aquí se muestra un ejemplo de un argumento de la opción "startimport":
Option startimport = OptionBuilder
.withArgName("environment")
.hasArg()
.withDescription(
"Description")
.create("startimport");
Cuando uso -help imprime:
-startimport <environment> Description
Thatfs bien. Pero, ¿y si quiero usar dos argumentos?
Option startimport = OptionBuilder
.withArgName("firstArg secondArg")
.hasArgs(2)
.withDescription("Description")
.create("startimport ");
Análisis de los dos argumentos no es el problema, pero quiero la siguiente salida en el "-help":
startimport <firstArg> <secondArg> Description
Pero actualmente me acaba de llegar:
startimport <firstArg secondArg> Description
Es Hay una solución adecuada para ese problema?