>  기사  >  백엔드 개발  >  Go의 exec.Command가 "종료 상태 1"을 반환하는 이유는 무엇이며 추가 정보를 어떻게 얻을 수 있습니까?

Go의 exec.Command가 "종료 상태 1"을 반환하는 이유는 무엇이며 추가 정보를 어떻게 얻을 수 있습니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-13 13:32:02774검색

Why Does exec.Command in Go Return

Debugging "exit status 1" Error in Golang Exec.Command

When utilizing exec.Command in Golang, encountering the enigmatic "exit status 1" error leaves one scratching their head for specifics. This article aims to illuminate this error's cause and provide a solution for more detailed diagnostics.

Consider the following code:

cmd := exec.Command("find", "/", "-maxdepth", "1", "-exec", "wc", "-c", "{}", "\\")
var out bytes.Buffer
cmd.Stdout = &out
err := cmd.Run()

Executing this code results in the uninformative "exit status 1" error. To remedy this, leverage the Stderr property of the Command object:

var stderr bytes.Buffer
cmd.Stderr = &stderr

Upon executing, the error message will become apparent:

exit status 1: find: -exec: no terminating ";" or "+"

Now, equipped with this detailed error, you can address the issue accordingly.

Note: It's worth considering that some commands may redirect error messages to stdout rather than stderr. Additionally, certain commands may print error messages to stderr but still return a zero error code (leading to a nil err in your code). Therefore, it may be necessary to adjust the given solution to accommodate the specific commands you're using.

위 내용은 Go의 exec.Command가 "종료 상태 1"을 반환하는 이유는 무엇이며 추가 정보를 어떻게 얻을 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.