原创 Linux dup系统调用

2024-6-12 17:35 189 3 3 分类: 软件与OS 文集: Linux
代码:

/*
 * main.c
 *
 *  Created on: 2024-6-11
 *      Author: root
 */
#include

#include

#include
#include
#include
#include



int main()
{

	int fd;

	if((fd=open("output",O_CREAT | O_RDWR,0644))==-1)
	{
		perror("open or creat file failed!");
		return 1;
	}
	close(1);
	dup(fd);
	close(fd);
	puts("this line dsta will output to file");






	return 0;
}
运行效果

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
3
关闭 站长推荐上一条 /3 下一条