gpt4 book ai didi

c - 在bash中,如何使用stdin将流(对应于文件)传递给C二进制文件?

转载 作者:行者123 更新时间:2023-11-30 20:11:14 24 4
gpt4 key购买 nike

在 bash 中,如果我有一个名为 file1 的文件,如何使用 stdin 以及与以下代码对应的二进制文件,以便返回对应的整数文件描述符到文件1

int main(){

return fileno(stdin);

}

谢谢

附注:

我正在寻找这样的 bash 表达式:

user:~$expression | ./binary

附注(之二):

我在制作合成标题时遇到了一些困难,如果您找到更好的标题,请告诉我

最佳答案

In bash, If I have a file called file1 how can I use stdin along with the binary corresponding to the following code in order to return the integer file descriptor corresponding to file1 ?

你显然有一个误解。任何给定文件都没有单一的文件描述符,对于未打开的文件也没有任何文件描述符。文件描述符是每个进程中与该进程的打开文件关联的每进程资源。因此,这个问题是基于错误的前提。

此外,即使您将进程的标准输入重定向为来自 file1,也不会在该进程中将 stdinfile1 识别。它仅仅意味着您可以通过 stdin 读取 file1内容一次。在这种情况下,您无法从 stdin 获取有关 file1 的任何其他信息,因此即使在更一般的意义上,您建议用于获取有关 file1 信息的方法(除其内容外)不可行。

关于c - 在bash中,如何使用stdin将流(对应于文件)传递给C二进制文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41797322/

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