I want to be able to do this:
$ echo "hello world" | ./my-c-program
piped input: >>hello world<<
I know that isatty
should be used to detect if stdin is a tty or not. If it’s not a tty, I want to read out the piped contents — in the above example, that’s the string hello world
.
What’s the recommended way of doing this in C?
Here’s what I got so far:
#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<<
", pipe);
}
}
I compiled this using:
gcc -o my-c-program my-c-program.c
It almost works, except it always seems to add a U+FFFD REPLACEMENT CHARACTER and a newline (I do understand the newline though) at the end of the piped content string. Why does this happen, and how can this issue be avoided?
echo "hello world" | ./my-c-program
piped content: >>hello world
?<<
Disclaimer: I have no experience with C whatsoever. Please go easy on me.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…