Library for executing bash commands with captured output.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
exec/lib/exec.hpp

16 lines
165 B

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