C++执行Shell

C++执行Shell

代码如下

1
2
3
4
5
6
7
8
9
10
#include <iostream>

int main() {
std::string command = "dir"; // 将要执行的 cmd 命令(例如ipconfig,ping等)
int result = system(command.c_str()); // 执行命令,并获得返回值
std::cout << "Command result: " << result << std::endl; // 输出返回值

return 0;

}

示例代码将执行 dir 命令,并输出命令的返回值。


C++执行Shell
https://blog.qingyi-studio.top/2023/09/09/C-执行Shell/
作者
Grey-Wind
发布于
2023年9月9日
更新于
2024年8月27日
许可协议