public ExitStatus run(String... args) throws Exception {
return run(Arrays.asList(args));
}
protected ExitStatus run(Collection<String> args) throws IOException {
this.process = new RunProcess(this.command);
int code = this.process.run(args.toArray(new String[args.size()]));
if (code == 0) {
return ExitStatus.OK;
}
else {