Last active
October 12, 2016 14:59
-
-
Save caot/d45a0b8175ffefbf0df30eb47e48cb4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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