ThreadIOImpl threadio = new ThreadIOImpl();
threadio.start();
CommandShellImpl commandProcessor = new CommandShellImpl();
commandProcessor.setThreadio(threadio);
commandProcessor.setConverter(new Support());
ClassLoader cl = Main.class.getClassLoader();
if (args.length > 0 && args[0].startsWith("--classpath=")) {
String base = args[0].substring("--classpath=".length());
List<URL> urls = getFiles(new File(base));