// -p
Option permOption = createOptionWithArg(builder, "perms", "p","permissions for the db/table specified in CREATE statement",
argBuilder.withMinimum(1).withMaximum(1).create());
builder.reset();
Option isHelpOption = builder.withShortName("h").withLongName("help").withDescription("help").create();
new PropertyOption();
Group allOptions = new GroupBuilder().withOption(isHelpOption).withOption(execOption).withOption(fileOption).withOption(grpOption).withOption(permOption).create();
Parser parser = new Parser();
parser.setGroup(allOptions);