Exemplo n.º 1
0
void execute_quietly(const char* cmd) {
	exec_quietly(cmd);
	return;
}
Exemplo n.º 2
0
std::string execute_quietly(const char* cmd) {
	return exec_quietly(cmd);
}
Exemplo n.º 3
0
//runs in the shell and gives you back nothing (sends all the streams into dev/null/)
void execute_quietly(std::string const& cmd) {
	exec_quietly(cmd.c_str());
	return;
}
Exemplo n.º 4
0
std::string execute_quietly(std::string const& cmd) {
	return exec_quietly(cmd.c_str());
}