exec/test/test.cpp
2023-06-27 10:38:27 +02:00

15 lines
175 B
C++

#include <iostream>
#include "../lib/exec.hpp"
using namespace std;
int main() {
string out = exec("bash bash_cmd.sh");
cout << out << endl;
return 0;
}