public static void main(String[] args) throws IOException {
StringBuilder sbTmp = new StringBuilder();
sbTmp.append("\r\nKoll3ctions v").append(VERSION).append(" Special Edition (C) 2012 Fogas János - ").append(EMAIL);
Konsole console = KonsoleSingleton.getInstance();
console.println(sbTmp.toString());
KConfig cfg = new Koll3ctionsConfig(args);
Koll3ctions col = new Koll3ctions(cfg);
KFinder finder = new KFinder(cfg.getStr(KINDLE_FOLDERS), cfg.getStr(LANGUAGE), cfg.getStr(KINDLE_PATH));
File kindle = finder.findKindle();
col.createCollections(kindle);
console.println(Dictionary.getString("Koll3ctions.msg.resartKindle", cfg.getStr(LANGUAGE)));
console.println(Dictionary.getString("Koll3ctions.msg.resartKindleHowTo", cfg.getStr(LANGUAGE)));
}