public static Process executeIn( File directory, List<?> commandLine, boolean processOutput, boolean redirectErrorStream) throws IOException { List<Integer> defaultAcceptableExitCodes = Arrays.asList(0); return ProcessUtils.executeIn( directory, commandLine, processOutput, redirectErrorStream, defaultAcceptableExitCodes); }
public static Process executeIn(File directory, List<?> commandLine) throws IOException { return ProcessUtils.executeIn(directory, commandLine, true, true); }
public static Process executeIn(File directory, List<?> commandLine, boolean processOutput) throws IOException { return ProcessUtils.executeIn(directory, commandLine, processOutput, true); }