exec/test/test.cpp
2024-01-07 00:20:39 +01:00

15 lines
166 B
C++

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