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

19 lines
189 B

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