Mega Code Archive

 
Categories / Java Tutorial / Development
 

Launch a Unix script with Java

public class Main {   public static void main(String[] argv) throws Exception {     String[] cmd = { "/bin/sh", "-c", "ls > hello" };     Runtime.getRuntime().exec(cmd);   } }