- 论坛徽章:
- 0
|
本帖最后由 crazyhadoop 于 2012-02-28 08:30 编辑
- #include "shell.h"
- #define BUF_LEN 4096
- void copy(int fd_in,int fd_out)
- {
- size_t n;
- char buffer[BUF_LEN];
- memsert(buffer,0,BUF_LEN);
- /* printf("LENGTH: %ld\n",\
- lseek(fd_in,0l,SEEK_END)); */
- lseek(fd_in,0l,SEEK_SET);
- while((n=read(fd_in,buffer,BUF_LEN))>0){
- printf("n:%d",n);
- /* printf("Current: %ld\n",\
- lseek(fd_out,0,SEEK_CUR));
- */
- if(write(fd_out,buffer,n)!=n)
- sys_err("src/io.c:copy():write error:%s\n");
-
- }
- if(n<0)
- sys_err("src/io.c:copy():read error:%s\n");
-
- }
- void cat(int argc,char (*argv)[CMD_LEN])
- {
- int fd_in;
- int fd_out;
- int i=0;
- if(argc==1)
- copy(STDIN_FILENO,STDOUT_FILENO);
-
- for(i=1;i<argc;i++){
- if(!strcmp("<",argv[i])){
- if((fd_in=open(argv[++i],O_RDONLY))<0)
- sys_err("src/mcat.c: open error:");
- if(dup2(fd_in,STDIN_FILENO)!=STDIN_FILENO)
- sys_err("src/mcat.c: dup2 error:");
- continue;
- }
- else if(!strcmp(">",argv[i])){
- if((fd_out=open(argv[++i],O_WRONLY|O_CREAT|O_TRUNC,\
- 0644))<0)
- sys_err("src/mcat.c: open error:");
- if(dup2(fd_out,STDOUT_FILENO)!=STDOUT_FILENO)
- sys_err("src/mcat.c: dup2 error:");
- continue;
- }
- else{
- if((fd_in=open(argv[i],O_RDONLY))<0)
- sys_err("src/mcat.c: open error:");
- if(dup2(fd_in,STDIN_FILENO)!=STDIN_FILENO)
- sys_err("src/mcat.c: dup2():");
- }
-
- copy(STDIN_FILENO,STDOUT_FILENO);
- }
- }
复制代码 这个是我自己做cat的代码 ,放在bash运行没问题,但是放在自己做的shell上就出问题了,比喻cat < a.txt > b.txt 就会出现在 if(!strcmp(">",argv))
dup2 这不动等着你在终端上输入,这是为什么??传的参数都没问题,我自己做的的其他shell命令都能正常运行,唯独这个cat出问题。
|
|