摘要: system - execute a shell command #include <stdlib.h> int system (const char *command); 描述 fork()->exec()->waitpid() The system() uses fork to create a 阅读全文
posted @ 2016-12-10 13:27 yuxi_o 阅读(5567) 评论(0) 推荐(0)
摘要: popen, pclose - pipe stream to or from a process FILE *popen( const char *command, const char *type); int pclose(FILE *stream); 描述 The popen() functio 阅读全文
posted @ 2016-12-10 12:34 yuxi_o 阅读(1090) 评论(0) 推荐(0)