mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-08-05 04:46:21 -04:00
10 lines
140 B
C++
Executable File
10 lines
140 B
C++
Executable File
#include "subprocess.hpp"
|
|
|
|
using namespace subprocess;
|
|
|
|
int main() {
|
|
auto p = Popen({"./script.sh"},
|
|
output{"out.txt"});
|
|
return 0;
|
|
}
|