使用 golang CLI 在遠端電腦上執行指令
要在遠端電腦上執行指令,Golang CLI 可以利用「golang.org」 /x/crypto/ssh」套件。這是您的查詢的解決方案:
函數remoteRun示範如何在遠端電腦上執行單一命令並檢索其輸出:
func remoteRun(user string, addr string, privateKey string, cmd string) (string, error) { // Read or retrieve the private key key, err := ssh.ParsePrivateKey([]byte(privateKey)) if err != nil { return "", err } // Configure authentication config := &ssh.ClientConfig{ User: user, HostKeyCallback: ssh.InsecureIgnoreHostKey(), // Allow any host Auth: []ssh.AuthMethod{ ssh.PublicKeys(key), }, } // Establish a connection client, err := ssh.Dial("tcp", net.JoinHostPort(addr, "22"), config) if err != nil { return "", err } // Create a session session, err := client.NewSession() if err != nil { return "", err } defer session.Close() // Collect the command's output var b bytes.Buffer session.Stdout = &b // Execute the command err = session.Run(cmd) if err != nil { return "", err } return b.String(), nil }
此函數接受用戶,地址,私有鍵和命令作為輸入,並以字符串形式返回命令的輸出。 🎜>
以上是如何使用 Golang CLI 在遠端機器上執行命令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!