免费注册 查看新帖 |

Chinaunix

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

[Linux] [结贴]dup2重定向标准输出失败了,为什么呢? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-04-29 13:05 |只看该作者 |倒序浏览
本帖最后由 wqrocdr 于 2015-04-30 09:14 编辑

我尝试重定向标准输出到一个文件里面,如下所示的程序:

  1. #include<sys/types.h>
  2. #include<sys/stat.h>
  3. #include<unistd.h>
  4. #include<fcntl.h>
  5. #include<stdio.h>
  6. #include<stdlib.h>
  7. int main(int argc, char *argv[])
  8. {
  9.     int fd=open("x.txt",O_CREAT|O_RDWR|S_IWUSR|S_IRUSR|S_IRGRP|S_IWGRP);
  10.     dup2(1,fd);
  11.     write(1,"hello world\n",12);
  12.     printf("myself\n");
  13.     close(fd);
  14.     return 0;
  15. }
复制代码
编译运行,命令行输出

  1. ~$ g++ n.cpp && ./a.out
  2. hello world
  3. myself
复制代码
并没有如我所期望的被重定向到了一个文件里面去。
而且这个新创建的x.txt文件的权限,看起来也没有我所设置的权限,而且很奇怪的多了一个"set-user-id"位:

  1. -rwS-wx---  1 a    a       0  4月 29 13:03 x.txt*
复制代码
这是为什么呢? 我的程序错在哪里

论坛徽章:
2
2015年亚洲杯之乌兹别克斯坦
日期:2015-04-15 15:43:482015亚冠之迪拜阿赫利
日期:2015-06-30 20:36:46
2 [报告]
发表于 2015-04-29 17:38 |只看该作者

  1. dup2(fd,1);
复制代码
reference to the man page of dup2
int dup2(int oldfd, int newfd);
dup2() makes newfd be the copy of oldfd, closing newfd first if necessary.

论坛徽章:
0
3 [报告]
发表于 2015-04-29 18:47 |只看该作者
bfdhczw 发表于 2015-04-29 17:38
reference to the man page of dup2
int dup2(int oldfd, int newfd);
dup2() makes newfd be the copy o ...


我按照你说的改了,如下:

  1. [a@localhost ~]$ cat n.cpp
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<unistd.h>
  5. #include<fcntl.h>
  6. #include<stdio.h>
  7. #include<stdlib.h>
  8. int main(int argc, char *argv[])
  9. {
  10.     int fd=open("x.txt",O_CREAT|O_RDWR|S_IWUSR|S_IRUSR|S_IRGRP|S_IWGRP);
  11.     dup2(fd,1);
  12.     write(1,"hello world\n",12);
  13.     printf("myself\n");
  14.     close(fd);
  15.     return 0;
  16. }
  17. [a@localhost ~]$ g++ n.cpp && ./a.out
  18. hello world
  19. myself
复制代码
可以看到结果还是不变啊? 这到底是怎么回事?

论坛徽章:
2
2015年亚洲杯之乌兹别克斯坦
日期:2015-04-15 15:43:482015亚冠之迪拜阿赫利
日期:2015-06-30 20:36:46
4 [报告]
发表于 2015-04-29 18:52 |只看该作者
回复 3# wqrocdr

你是不是x.txt已经存在了,导致open失败?
   

论坛徽章:
0
5 [报告]
发表于 2015-04-30 09:14 |只看该作者
bfdhczw 发表于 2015-04-29 18:52
回复 3# wqrocdr

你是不是x.txt已经存在了,导致open失败?


你说的对,确实应该先删除。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP