cpp-subprocess icon indicating copy to clipboard operation
cpp-subprocess copied to clipboard

Subprocessing with modern C++

Results 39 cpp-subprocess issues
Sort by recently updated
recently updated
newest added

Hi @arun11299 Added a convenience 'call' overload, fixed a typo in readme and made testing optional and off by default. Let me know if of interest:)

I'm trying to run this command `explorer /select,"C:\Windows"` using `subprocess::call`, it should open a file explorer window with the "Windows" folder selected. However, the library always ends up surrounding all...

First - thank you for this effort. I'm studying on a program that using subprocess,but occurs some problems: 1、“initializer list” cannot convert to “subprocess::environment” 2、Microsoft C++ abnormal: subprocess::OSError and i...

On Android int main(int argc, char** argv) { auto obuf = check_output({"ls", "-l"}); printf( "obuf:%s\n", obuf.buf.data()); return 0; } fdsan: attempted to close file descriptor 5, expected to be unowned,...

``` #define close _close #define open _open #define fileno _fileno ``` it makes std::ofstream close() cannot unusable

After installation, cmake can't find subprocess by find_package. It seems to be caused by invalid cmake config filenames. Please check this PR and fix those.