git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
17 lines
405 B
Java
17 lines
405 B
Java
import java.io.*;
|
|
import java.lang.System;
|
|
import java.util.Properties;
|
|
|
|
public class executeCommand {
|
|
|
|
public static void main(String args[]) throws Exception {
|
|
String command = args[0];
|
|
try {
|
|
// Execute a command without arguments
|
|
Process child = Runtime.getRuntime().exec(command);
|
|
} catch (IOException e) {
|
|
System.err.println("Error: " + e.getMessage());
|
|
}
|
|
}
|
|
}
|