是使用 popen 的好处只是读取命令产生的输出,或者 popen 比系统有更多的好处或优势。
考虑以下两个程序:
方案一:
#include <stdio.h>
int main()
{
FILE *more,*who;
if (!(more = popen("more", "w")))
{
printf("Command `more` not found!");
return -1;
}
if (!(who = popen("who", "r")))
{
printf("Command `who` not found!");
return -1;
}
while (!feof(who))
{
char buffer[100];
if (fgets(buffer, 100, who) != NULL)
{
fputs(buffer, more);
}
}
fclose(more);
fclose(who);
return 0;
}
方案二:
#include <unistd.h>
int main()
{
system("who|more");
return 0;
}
如果我可以在一行中做与Program2中相同的事情,我为什么要使用Program1。