免费注册 查看新帖 |

Chinaunix

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

求教cat 问题?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-27 21:42 |只看该作者 |倒序浏览
本帖最后由 crazyhadoop 于 2012-02-28 08:30 编辑

  1. #include "shell.h"

  2. #define BUF_LEN 4096

  3. void copy(int fd_in,int fd_out)
  4. {
  5.         size_t n;
  6.         char buffer[BUF_LEN];
  7.         memsert(buffer,0,BUF_LEN);
  8. /*        printf("LENGTH: %ld\n",\
  9.                         lseek(fd_in,0l,SEEK_END)); */
  10.         lseek(fd_in,0l,SEEK_SET);
  11.         while((n=read(fd_in,buffer,BUF_LEN))>0){
  12.                 printf("n:%d",n);
  13. /*                printf("Current: %ld\n",\
  14.                                 lseek(fd_out,0,SEEK_CUR));
  15. */
  16.                 if(write(fd_out,buffer,n)!=n)
  17.                         sys_err("src/io.c:copy():write error:%s\n");
  18.                
  19.         }
  20.         if(n<0)
  21.                 sys_err("src/io.c:copy():read error:%s\n");
  22.        
  23. }

  24. void cat(int argc,char (*argv)[CMD_LEN])
  25. {
  26.         int fd_in;
  27.         int fd_out;
  28.         int i=0;

  29.         if(argc==1)
  30.                 copy(STDIN_FILENO,STDOUT_FILENO);
  31.        
  32.         for(i=1;i<argc;i++){
  33.                 if(!strcmp("<",argv[i])){
  34.                                 if((fd_in=open(argv[++i],O_RDONLY))<0)
  35.                                         sys_err("src/mcat.c: open error:");
  36.                                 if(dup2(fd_in,STDIN_FILENO)!=STDIN_FILENO)
  37.                                         sys_err("src/mcat.c: dup2 error:");
  38.                                 continue;
  39.                                 }
  40.                 else if(!strcmp(">",argv[i])){
  41.                                 if((fd_out=open(argv[++i],O_WRONLY|O_CREAT|O_TRUNC,\
  42.                                                                 0644))<0)
  43.                                         sys_err("src/mcat.c: open error:");
  44.                                 if(dup2(fd_out,STDOUT_FILENO)!=STDOUT_FILENO)
  45.                                         sys_err("src/mcat.c: dup2 error:");
  46.                                 continue;
  47.                                 }
  48.                 else{
  49.                         if((fd_in=open(argv[i],O_RDONLY))<0)
  50.                                 sys_err("src/mcat.c: open error:");
  51.                         if(dup2(fd_in,STDIN_FILENO)!=STDIN_FILENO)
  52.                                 sys_err("src/mcat.c: dup2():");
  53.                 }
  54.        
  55.         copy(STDIN_FILENO,STDOUT_FILENO);
  56.         }


  57. }

复制代码
这个是我自己做cat的代码  ,放在bash运行没问题,但是放在自己做的shell上就出问题了,比喻cat < a.txt > b.txt  就会出现在  if(!strcmp(">",argv))
dup2 这不动等着你在终端上输入,这是为什么??传的参数都没问题,我自己做的的其他shell命令都能正常运行,唯独这个cat出问题。









您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP