LOG.debug("Command to execute : " + command);
List modifications = null;
try {
Process p = Runtime.getRuntime().exec(command, null, root);
StreamPumper errorPumper = new StreamPumper(p.getErrorStream());
new Thread(errorPumper).start();
InputStream input = p.getInputStream();
modifications = parseStream(input);