是否有一种C ++方式来调用linux shell命令?

时间:2016-02-10 17:27:39

标签: c++ linux shell

在C中有popen()和system()来调用外部命令。使用例如STL和' std ::'是否有更标准化的C ++方式来实现这一点?

1 个答案:

答案 0 :(得分:3)

没有。它和C一样。

#include <cstdlib>然后使用std::system("whatever your command is")