我希望能够做到这一点:
$ echo "hello world" | ./my-c-program
piped input: >>hello world<<
我知道isatty
应该用它来检测标准输入是否是 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 REPLACEMENT CHARACTER 和一个换行符(我确实理解换行符)。为什么会发生这种情况,如何避免这个问题?
echo "hello world" | ./my-c-program
piped content: >>hello world
�<<
免责声明:我对 C 没有任何经验。请对我放轻松。