15 lines
166 B
C++
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;
|
|
} |