Linux c语言管道命令处理shell问题的c程序方法

jackxiang 2007-12-29 11:33 | |
#include   <sys/types.h>
#include   <unistd.h>
#include   <stdlib.h>
#include   <stdio.h>
int   main()
{
       FILE   *stream;
       stream=popen("ps aux|grep rpc","r");
       char   buf[4096];
       fread(buf,sizeof(char),4096,stream);
       printf("%s",buf);
}




#include "stdio.h"
int main()
{
char a[256];
system("ps axu|grep httpd>a.txt");
printf("%c",a);
return 0;
}

作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/844/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!


最后编辑: jackxiang 编辑于2007-12-29 11:57
评论列表
发表评论

昵称

网址

电邮

打开HTML 打开UBB 打开表情 隐藏 记住我 [登入] [注册]