Skip to content

Instantly share code, notes, and snippets.

@therealkenc
Created October 28, 2016 01:13
Show Gist options
  • Select an option

  • Save therealkenc/9df8855404fa4d74488a053b0004627b to your computer and use it in GitHub Desktop.

Select an option

Save therealkenc/9df8855404fa4d74488a053b0004627b to your computer and use it in GitHub Desktop.
import java.io.IOException;
public class Main {
public static void main(String... args) throws IOException {
ProcessBuilder pb = new ProcessBuilder("echo", "test");
Process p = pb.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment