
popenplusplus
popen++ is a C++ library that allows you to run a child process and have its input, output and error avaliable as standard C++ streams.
Sample
``` process::popen child = process::popen2("python");
child.stdin() << "print 'TEST STRING'" << std::flush; child.close_stdin();
std::ostringstream out; out << child.stdout().rdbuf() << std::flush; ```
Depends
Links
- wxExecute
- Boost.Process
- libexecstream
- PStreams - POSIX only
Project Information
- License: GNU Lesser GPL
- 3 stars
- svn-based source control