Created
October 28, 2016 01:13
-
-
Save therealkenc/9df8855404fa4d74488a053b0004627b 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
| 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