标签: c++ linux shell
在C中有popen()和system()来调用外部命令。使用例如STL和' std ::'是否有更标准化的C ++方式来实现这一点?
答案 0 :(得分:3)
没有。它和C一样。
#include <cstdlib>然后使用std::system("whatever your command is")。
#include <cstdlib>
std::system("whatever your command is")