1

你好。我有非常简单的 C 程序。我在程序中创建管道(标准,未命名)。我可以在终端中读取现有进程的管道(使用 > 或 cat 进行流式传输吗?)。我尝试了一下,但我的命令什么也没做。我知道 tkat 我可以创建对外部 I/O 非常容易的命名管道。我有 /proc/number/fd 的管道数 为什么我需要它?仅来自调试(但不仅如此,我知道 gdb 可以看起来像管道)。当我 fork 进程时,子进程继承 pts(终端)和 std io/out。更改 pts 是可能的,但这是不好的方法。所以我将打开下一个终端并在其中流式传输现有的进程pipie。有可能(而且体面,头晕的方式让我不感兴趣)或者我必须使用命名管道?

4

1 回答 1

1

我可以在终端中读取现有进程的管道(使用 > 或 cat 进行流式传输吗?)

是的你可以。示例rnpit.c

#include <string.h>
main()
{
    int pipefd[2];
    pipe(pipefd);
    write(pipefd[1], "pipe", strlen("pipe"));
    sleep(99);  // give us time to read the pipe
}

>坑坑&
[1] 1077
>ll /proc/${!}/fd
共 0
lrwx------ 1 armali ARNGO_res4 64 Apr 4 09:22 0 -> /dev/pts/5
lrwx------ 1 armali ARNGO_res4 64 Apr 4 09:22 1 -> /dev/pts/5
lrwx------ 1 armali ARNGO_res4 64 Apr 4 09:22 2 -> /dev/pts/5
lr-x------ 1 armali ARNGO_res4 64 Apr 4 09:22 3 -> 管道:[399466140]
l-wx------ 1 armali ARNGO_res4 64 Apr 4 09:22 4 -> 管道:[399466140]
>cat /proc/${!}/fd/3
管道
于 2016-04-04T07:33:30.343 回答