exec/lib/exec.hpp
2024-01-07 00:20:39 +01:00

16 lines
165 B
C++

#ifndef _TRM_
#define _TRM_
#include <iostream>
#include <string>
using namespace std;
/**
* Execute bash command
*/
string exec(const string command);
#endif