exec/test/test.cpp
2024-01-07 21:33:04 +01:00

14 lines
189 B
C++

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