在 Linux 中使用管道 Stdin/Stdout 执行子进程
在 Linux 中,使用 Pipedstdin/stdout 执行子进程需要组合Linux 系统调用或 POSIX 函数。为了实现这一点,我们将利用以下技术:
下面是实现这些技术的 C 示例:
#include <iostream> #include <unistd.h> #include <stdlib.h> using namespace std; int main() { // Input string string s = "Hello, world!"; // Create pipes for stdin and stdout int stdinPipe[2], stdoutPipe[2]; pipe(stdinPipe); pipe(stdoutPipe); // Fork a child process int pid = fork(); if (pid == 0) { // Child process // Redirect stdin and stdout to pipes dup2(stdinPipe[0], STDIN_FILENO); // Read from pipe dup2(stdoutPipe[1], STDOUT_FILENO); // Write to pipe // Close unused file descriptors close(stdinPipe[1]); close(stdoutPipe[0]); // Execute "foo" with piped stdin execlp("foo", "foo", NULL); // Exit child process on failure exit(1); } else if (pid > 0) { // Parent process // Close unused file descriptors close(stdinPipe[0]); close(stdoutPipe[1]); // Write to stdin pipe write(stdinPipe[1], s.c_str(), s.length()); close(stdinPipe[1]); // Read from stdout pipe char buffer[256]; int bytesRead = 0; string output; while ((bytesRead = read(stdoutPipe[0], buffer, sizeof(buffer))) > 0) { output.append(buffer, bytesRead); } close(stdoutPipe[0]); // Print output string cout << output << endl; } return 0; }
此代码片段:
以上是如何在 Linux 中使用管道 Stdin/Stdout 执行子进程?的详细内容。更多信息请关注PHP中文网其他相关文章!