> 백엔드 개발 > Golang > Go에서 `exec.Command`로 입력을 올바르게 리디렉션하는 방법은 무엇입니까?

Go에서 `exec.Command`로 입력을 올바르게 리디렉션하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-12-05 05:49:09
원래의
451명이 탐색했습니다.

How to Properly Redirect Input to `exec.Command` in Go?

입력 리디렉션이 포함된 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿