Warning: session_start(): open(/var/lib/php/sessions/sess_bvft6co7btllmaerbomutr4uu3, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
lib 1013692
sS apacheCommonsExec(LS args) ctex {
var cmdLine = new org.apache.commons.exec.CommandLine(first(args));
for (arg : dropFirst(args))
cmdLine.addArg(arg);
ret apacheCommonsExec(cmdLine);
}
sS apacheCommonsExec(S cmd) ctex {
ret apacheCommonsExec(org.apache.commons.exec.CommandLine.parse(cmd));
}
sS apacheCommonsExec(org.apache.commons.exec.CommandLine cmdLine) {
delegate DefaultExecutor, PumpStreamHandler to org.apache.commons.exec.
new DefaultExecutor executor;
new ByteArrayOutputStream baos;
OutputStream stream = teeOutputStream(printOutputStream(), baos);
PumpStreamHandler pump = new(stream, stream);
executor.setStreamHandler(pump);
print("Exit value: " + executor.execute(cmdLine));
ret fromUTF8(toByteArray(baos));
}