입력 리디렉션이 포함된 exec.Command
Go에서는 exec.Command 함수를 사용하여 외부 명령을 실행할 수 있습니다. 파이프를 통해 입력을 명령으로 리디렉션하려면 StdinPipe 메서드를 사용해야 합니다.
다음 작업을 고려하세요. "/sbin/iptables-restore < /etc/iptables.conf" 명령을 실행하세요. 이 명령은 구성 파일을 기반으로 IPTables를 업데이트하지만 exec.Command를 사용하여 입력 리디렉션을 구성하는 것이 어려울 수 있습니다.
첫 번째 시도인 exec.Command("/sbin/iptables-restore", "< ;", "/etc/iptables.conf")는 < 명령 플래그로. 또한 exec.Command("/sbin/iptables-restore", "< /etc/iptables.conf")를 사용하면 < IPTables에 대한 인수로 사용하면 오류가 발생합니다.
이 문제를 해결하려면 stdin 파이프를 통해 입력 데이터를 명시적으로 제공하세요.
package main import ( "io" "io/ioutil" "log" "os/exec" ) func main() { // Read the contents of the input file. bytes, err := ioutil.ReadFile("/etc/iptables.conf") if err != nil { log.Fatal(err) } // Create the command. cmd := exec.Command("/sbin/iptables-restore") // Get the stdin pipe. stdin, err := cmd.StdinPipe() if err != nil { log.Fatal(err) } // Start the command. err = cmd.Start() if err != nil { log.Fatal(err) } // Write the input data to the stdin pipe. _, err = io.WriteString(stdin, string(bytes)) if err != nil { log.Fatal(err) } // Ensure stdin is closed. err = stdin.Close() if err != nil { log.Fatal(err) } // Wait for the command to finish. err = cmd.Wait() if err != nil { log.Fatal(err) } }
이 코드를 사용하면 IPTables 구성 파일을 읽습니다. cmd.StdinPipe()에 기록하여 원하는 입력 리디렉션을 달성합니다.
위 내용은 Go에서 `exec.Command`로 입력을 올바르게 리디렉션하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!