>hello world #include int main(int -6ren">
gpt4 book ai didi

c - 如何读取 C 中的管道内容?

转载 作者:太空狗 更新时间:2023-10-29 15:24:30 25 4
gpt4 key购买 nike

我希望能够做到这一点:

$ echo "hello world" | ./my-c-program
piped input: >>hello world<<

我知道isatty should be used检测 stdin 是否为 tty。如果它不是 tty,我想读出管道内容——在上面的示例中,这是字符串 hello world

在 C 中推荐的方法是什么?

这是我到目前为止得到的:

#include <stdio.h>
#include <unistd.h>

int main(int argc, char* argv[]) {

if (!isatty(fileno(stdin))) {
int i = 0;
char pipe[65536];
while(-1 != (pipe[i++] = getchar()));
fprintf(stdout, "piped content: >>%s<<\n", pipe);
}

}

我编译这个使用:

gcc -o my-c-program my-c-program.c

几乎 工作,除了它似乎总是在管道内容字符串的末尾添加一个 U+FFFD 替换字符和一个换行符(我确实理解换行符)。为什么会发生这种情况,如何避免这个问题?

echo "hello world" | ./my-c-program
piped content: >>hello world
�<<

免责声明:我对 C 没有任何经验。请放轻松。

最佳答案

出现替换符号是因为您忘记了以 NUL 终止字符串。

换行符在那里是因为默认情况下,echo 在其输出的末尾插入 '\n'

如果你不想插入 '\n' 使用这个:

echo -n "test" | ./my-c-program

并删除错误的字符插入

pipe[i-1] = '\0';

在打印文本之前。

请注意,您需要使用 i-1 作为空字符,因为您实现循环测试的方式。在您的代码中,i 在最后一个字符后再次递增。

关于c - 如何读取 C 中的管道内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16305971/

25 4 0
文章推荐: android - 如何判断通知栏是否在android中被拉下
文章推荐: html - 如何使用 PHPQuery 删除 HTML 标签?
文章推荐: jquery - 如何使用 jQuery 将元素内部文本的最后一个单词包裹起来?
文章推荐: html - 我可以替换 ' with `
` + css: ` table{...}` 吗?