#48: Stop relying on echo, tee and /dev/null for redirecting compression command to debug/

This commit is contained in:
Benjamin Loison 2023-02-22 03:47:06 +01:00
parent 221956438d
commit c30847c1f5

View File

@ -684,7 +684,9 @@ void exec(unsigned short threadId, string cmd, bool debug)
debugErrFilePath = debugCommonFilePath + ".err"; debugErrFilePath = debugCommonFilePath + ".err";
cmd += " >> " + debugOutFilePath; cmd += " >> " + debugOutFilePath;
cmd += " 2>> " + debugErrFilePath; cmd += " 2>> " + debugErrFilePath;
cmd += "; echo \"" + initialCmd + "\" | tee -a " + debugOutFilePath + " " + debugErrFilePath + " > /dev/null";
writeFile(threadId, debugOutFilePath, "a", initialCmd + "\n");
writeFile(threadId, debugErrFilePath, "a", initialCmd + "\n");
} }
system(cmd.c_str()); system(cmd.c_str());
} }