浏览代码

amended check_redirect

master
10195501441 3 年前
父节点
当前提交
82a29c1b7d
共有 3 个文件被更改,包括 4 次插入1 次删除
  1. +0
    -0
      result.txt
  2. 二进制
      yeeshell
  3. +4
    -1
      yeeshell.c

+ 0
- 0
result.txt 查看文件


二进制
yeeshell 查看文件


+ 4
- 1
yeeshell.c 查看文件

@ -227,6 +227,10 @@ int execute(char *cmdline, char **args)
free(redirect_args);
exit(0);
}
if ((redirect_flag == 1) || (redirect_flag == 2))
{
close(fd);
}
}
else
{
@ -251,7 +255,6 @@ int execute(char *cmdline, char **args)
}
}
}
close(fd);
return 1;
}

正在加载...
取消
保存