gpt4 book ai didi

c - 使用 dub2() 将输出重定向到文件 : undefined reference to `dub2'

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:58:53 33 4
gpt4 key购买 nike

我正在实现一个简单的 shell,我正在尝试使用系统调用“open”并使用“dub2”系统调用复制文件描述符。当我编译时,我总是得到:

undefined reference to `dub2'
collect2: error: ld returned 1 exit status

代码如下:

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>

int main()
{

//input line would be "ls > testfile.txt"

char* input1 = "ls";
char* input2 = ">";
char* input3 = "testfile.txt";

int f = open(input3, O_WRONLY|O_CREAT|O_TRUNC, 0666);
dub2(f, 1); //1(stdout)

return 0;
}

最佳答案

你拼错了函数名。

dup2,不是dub2

关于c - 使用 dub2() 将输出重定向到文件 : undefined reference to `dub2' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22674877/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com