subprocess
0.4.0
Modern subprocess library for c++
|
#include <basic_types.hpp>
Public Member Functions | |
operator bool () const | |
Public Attributes | |
CommandLine | args |
int | returncode = -1 |
std::string | cout |
std::string | cerr |
Details about a completed process.
|
inlineexplicit |
CommandLine subprocess::CompletedProcess::args |
The args used for the process. This includes the first first arg which is the command/executable itself.
std::string subprocess::CompletedProcess::cerr |
Captured stderr
std::string subprocess::CompletedProcess::cout |
Captured stdout
int subprocess::CompletedProcess::returncode = -1 |
negative number -N means it was terminated by signal N.