&1")-6ren">
gpt4 book ai didi

c - 管道 stderr 到缓冲区

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

在 GThread 中我有这样的代码

char *commandLine [1024];
sprintf(commandLine, "gcc myfile.c -o myfile.exe 2>&1");

FILE* pipein_fp;
extern FILE* popen();
static char buffer [1024];

pipein_fp = popen(commandLine, "r");
while(fgets(buffer, 1024, pipein_fp) != NULL) g_print("\n%s", buffer);
pclose(pipein_fp);

所以 2>&1 应该将 stderr 重定向到 stdout 并且管道 g_print 应该打印出 gcc 的 stderr 输出。但它什么都不做。我可能做错了什么?

最佳答案

您的代码有错误,请修改

char *commandLine [1024];
sprintf(commandLine, "gcc myfile.c -o myfile.exe 2>&1");

char commandLine [1024];
sprintf(commandLine, "gcc myfile.c -o myfile.exe 2>&1");

对于 sprintf ,第一个参数是char* str

您可以阅读 how to control popen stdin, stdout, stderr redirection?

关于c - 管道 stderr 到缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37651092/

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