Answers for "how to run shell commands in golang"

Go
0

how to execute linux command in golang

cmd := exec.Command("echo", "hello wordl")
res, _ := cmd.CombinedOutput()
fmt.Println(string(res))
Posted by: Guest on October-10-2021
0

golang execute bash command

cmd := exec.Command("go", "-v")
res, _ := cmd.Output()
fmt.Print(string(res))
Posted by: Guest on April-07-2022

Code answers related to "how to run shell commands in golang"

Browse Popular Code Answers by Language