exec/lib/exec.hpp
2024-01-07 21:34:03 +01:00

19 lines
189 B
C++

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