4546474849505152535455
// TODO Actually parse command line Config cfg = new Config(); String cfgName = "etc/jqbridge.properties"; if (args.length > 0) cfgName = args[0]; cfg.loadProperties(new File(cfgName)); Server srv = new Server(cfg); srv.run(); System.exit(0); }