当前位置: 技术问答>linux和unix
请问如何在程序中获得shell命令输出的信息?
来源: 互联网 发布时间:2016-10-06
本文导语: 我现在可以通过 pgrep memcache 来得到memcache的进程ID,请问我在程序中怎样使用pgrep memcache来得到进程的ID呢? 用system()函数调用也得不到命令输出的信息啊? | 用popen(const char* command, const ...
我现在可以通过 pgrep memcache 来得到memcache的进程ID,请问我在程序中怎样使用pgrep memcache来得到进程的ID呢?
用system()函数调用也得不到命令输出的信息啊?
用system()函数调用也得不到命令输出的信息啊?
|
用popen(const char* command, const char* mode ) 函数
|
嗯,顶主席
FILE *fp = popen("pgrep memcache", "r");
fgets()
pclose()
FILE *fp = popen("pgrep memcache", "r");
fgets()
pclose()