package main import ( "fmt" "os/exec" ) func main() { // Start the process in the background cmd := exec.Command("sleep", "60") err := cmd.Start() if err != nil ...
確定! 回上一頁