.help("Show this help message and exit")
.action(new HelpArgumentAction() {
@Override
public void run(ArgumentParser parser, Argument arg, Map<String, Object> attrs, String flag, Object value) throws ArgumentParserException {
StringWriter strWriter = new StringWriter();
parser.printHelp(new PrintWriter(strWriter, true));
String help = strWriter.toString();
int i = help.indexOf(descriptionHead);
String description = help.substring(i).trim();
String usage = help.substring("usage: ".length(), i).trim();
System.out.println(