options.addOption(option);
option = new Option("t", "graphite-port", true, "Graphite server port");
options.addOption(option);
CommandLineParser parser = new PosixParser();
CommandLine commandLine = null;
try {
commandLine = parser.parse(options, args);
}
catch(ParseException exception) {
System.err.println(exception.getMessage());
System.err.println("Usage: " + PushBot.class + " ARGS");
System.err.println(" -n,--name IRC Nick of the Bot");