gpt4 book ai didi

c++ - 在C++程序中运行linux命令

转载 作者:太空宇宙 更新时间:2023-11-04 05:19:53 25 4
gpt4 key购买 nike

我正在尝试在 C++ 程序中运行以下代码:

string cmd("strings -n 3 < BinaryFile > ascii.txt");
system(cmd.c_str();

BinaryFile 是一个包含 /home/test/BinaryFile

的字符串

当我像这样运行它时,我得到以下输出:

sh: BinaryFile: No such file or directory

如果我尝试以下操作:

string cmd("strings -n 3 < BinaryFile.c_str() > ascii.txt");
system(cmd.c_str();

我收到这些错误:

sh -c: line 0: syntax error near unexpected token '('
sh -c: line 0: 'strings -n 3 < Binaryfile.c_str() > ascii.txt

如何才能让它正常运行?

最佳答案

您需要显式构建命令行:

string cmd("strings -n 3 < " + BinaryFile + " > ascii.txt");
system(cmd.c_str());

关于c++ - 在C++程序中运行linux命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43284137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com