forked from MagicBane/Server
Capturing output of remote exec() to file.
This commit is contained in:
@@ -63,7 +63,17 @@ public class DevRequestHandler {
|
||||
}
|
||||
|
||||
processBuilder = new ProcessBuilder("/bin/sh", "-c", commandString + " " + commandArgument);
|
||||
|
||||
outFile = new File("devLastOut");
|
||||
if (outFile.exists())
|
||||
outFile.delete();
|
||||
|
||||
try {
|
||||
outFile.createNewFile();
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
|
||||
logString = String.join(" ",processBuilder.command().toArray(new String[0]));
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user