
org.znerd.util.proc.CommandRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of znerd-util Show documentation
Show all versions of znerd-util Show documentation
Set of utility classes (with associated unit tests) used by other znerd.org-projects
The newest version!
// Copyright 2011, Ernst de Haan
package org.znerd.util.proc;
import java.io.File;
public interface CommandRunner {
CommandRunResult runCommand(String command, String... arguments);
CommandRunResult runCommand(File workingDirectory, String command, String... arguments);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy