16 lines
165 B
C++
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 |