Пример #1
0
void execute_quietly(const char* cmd) {
	exec_quietly(cmd);
	return;
}
Пример #2
0
std::string execute_quietly(const char* cmd) {
	return exec_quietly(cmd);
}
Пример #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;
}
Пример #4
0
std::string execute_quietly(std::string const& cmd) {
	return exec_quietly(cmd.c_str());
}