コード例 #1
0
ファイル: shell.cpp プロジェクト: Jstd/Jstd-Bootstrap
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
ファイル: shell.cpp プロジェクト: Jstd/Jstd-Bootstrap
//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());
}