0
1
48
168
190
46
简单说一下popen()函数函数定义#include FILE * popen(const char *command , const char *type ); int pclose(FILE *stream);函数说明 popen()函数通过创建一个管道,调用fork()产生一个子进程,执行一个shell以运行命令来开启一个进程。这个管道必须由pclose()函数关闭,而不是fclose...