I need to get the stderr stream and the stdout stream for a command, but I only know how to redirect the command's stdout stream only.
Suppose I have a function like this:
int getcmd(cmd, buf, max, len)
const char *buf;
char *buf;
size_t max;
size_t *len;
{
if (!cmd || !buf)
return 1;
FILE *stream;
if ((stream = popen(cmd, "r")) == NULL)
return 1;
size_t length;
while (fgets(buf, max, stream) == buf) {
length = strlen(buf);
buf = &buf[length];
if (len)
*len += length;
max -= length;
}
if (*(buf - sizeof(char)) == '\n')
*(buf - sizeof(char)) = 0;
return pclose(stream);
}
This function can read the command's stdout without any tricks and store it in a variable.
How can I do the same with stderr ?