Skip to content

Instantly share code, notes, and snippets.

@caot
Last active October 12, 2016 14:59
Show Gist options
  • Select an option

  • Save caot/d45a0b8175ffefbf0df30eb47e48cb4f to your computer and use it in GitHub Desktop.

Select an option

Save caot/d45a0b8175ffefbf0df30eb47e48cb4f to your computer and use it in GitHub Desktop.
command = "ls /etc | grep release";
String[] cmd = { "/bin/sh", "-c", command };
ProcessBuilder pb = new ProcessBuilder(cmd);
pb.redirectOutput(Redirect.INHERIT);
pb.redirectError(Redirect.INHERIT);
Process p = pb.start();
p.waitFor();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment