免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1844 | 回复: 2
打印 上一主题 下一主题

apue 中调用popen不能实现功能,求高人调试 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-21 11:29 |只看该作者 |倒序浏览
  1. #include        "fun.h"
  2. #define PAGER "${PAGER:-more}"                  /*  */
  3. int main ( int argc, char *argv[] )
  4. {
  5.     char line[MAXLINE];
  6.     FILE *fpin, *fpout;

  7.     printf("%s",PAGER);
  8.     if ( argc != 2 )
  9.     {
  10.         err_quit("usage: %s <pathname>", argv[0]);
  11.     }

  12.     if ( (fpin = popen(argv[1], "r")) == NULL )
  13.     {
  14.         err_sys("can't open %s",argv[1]);
  15.     }

  16.     if ( (fpout = popen(PAGER, "w")) == NULL )
  17.     {
  18.         err_sys("popen error");
  19.     }
  20.     while ( fgets(line, MAXLINE,fpin) != NULL )
  21.     {
  22.         if ( fputs(line,fpout) == EOF )
  23.         {
  24.             err_sys("fputs error to pipe");
  25.         }
  26.     }

  27.     if ( ferror(fpin))
  28.     {
  29.         err_sys("fgets error");
  30.     }
  31.     if ( pclose(fpout) == -1 )
  32.     {
  33.         err_sys("pclose error");
  34.     }
  35.     exit(0);
  36. }                               /* ----------  end of function main  ---------- */
复制代码
我在 执行过程中总是 tmp/popen ./Makefile
sh: ./Makefile: Permission denied

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2010-02-21 15:54 |只看该作者
我在 执行过程中总是 tmp/popen ./Makefile
sh: ./Makefile: Permission denied
beauty2001 发表于 2010-02-21 11:29



    你清楚 popen 是做什么的么?Makefile 又该怎么用?

论坛徽章:
0
3 [报告]
发表于 2010-02-21 21:23 |只看该作者
是啊,Makefile 又没有可执行权限,也不是可执行程序, popen 它干嘛……
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP