在Linux 中使用管道Stdin/Stdout 執行子程序
在Linux 中,使用Pipedstdin/stdout 執行子系統需要組合Lininux呼叫或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中文網其他相關文章!