在同一個Shell 中順序運行多個命令:分析和解決方案
提供的Go 程式碼旨在順序執行多個命令,每個命令都在其自己獨立的shell 實例中。但是,它遇到了第二個和第三個命令失敗並顯示可執行檔不存在的錯誤的問題。這是因為每個命令都在新的 shell 中執行,從而失去了前面命令的上下文。
要解決此問題,需要在同一個 shell 實例中繼續執行所有命令。這可以透過使用以下方法來實現:
// Run multiple commands in the same shell instance func runCommands(commands []string) error { // Create a pipe for controlling the shell's standard input and output reader, writer, err := os.Pipe() if err != nil { return err } defer reader.Close() defer writer.Close() // Start the shell command cmd := exec.Command("/bin/sh") cmd.Stdin = reader cmd.Stdout = writer // Start the command and wait for it to finish if err := cmd.Start(); err != nil { return err } if err := cmd.Wait(); err != nil { return err } // Write each command to the shell's standard input for _, command := range commands { if _, err := writer.Write([]byte(command + "\n")); err != nil { return err } } // Close the pipe to signal the end of input if err := writer.Close(); err != nil { return err } // Read the output from the shell command output, err := ioutil.ReadAll(reader) if err != nil { return err } // Return the output return nil }
此函數將一段命令作為輸入,並在單一 shell 實例中按順序執行它們。它將命令透過管道傳輸到 shell 的標準輸入,然後讀取其輸出。
透過使用這種方法,後續命令將在與前面的命令相同的工作目錄中執行,並且前面遇到的問題將得到解決.
以上是如何在 Go 的單一 Shell 實例中順序執行多個命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!