import java.io.*; import java.util.*; import java.lang.*; public class SystemCall { private String[] command = null; // Vector of strings that contains the output of the command that was run. private Vector output = new Vector(); /** Creates new SystemCall */ public SystemCall() { } public SystemCall(String command){ this(new String[]{command}); } public SystemCall(String[] command) { this.command = command; } public void setCommand(String command){ this.command = new String[]{command}; } public String[] runCommand(){ /*for (int i=0;i