builder.command("/bin/sh", new File(homeDir, "bin/" + script).getAbsolutePath(), args);
}
builder.redirectErrorStream(true);
Process process = builder.start();
PumpStreamHandler pump = new PumpStreamHandler(System.in, System.out, System.err);
pump.attach(process);
pump.start();
return process;
}
public static Instance startKaraf(File home) throws Exception {