예제 #1
0
void execute_quietly(const char* cmd) {
	exec_quietly(cmd);
	return;
}
예제 #2
0
파일: shell.cpp 프로젝트: luxe/golf-it
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
파일: shell.cpp 프로젝트: luxe/golf-it
std::string execute_quietly(std::string const& cmd) {
	return exec_quietly(cmd.c_str());
}