I am new to golang, and I am trying to run a command remotely via ssh.I have found a example, but I am confused as to why it wont work, it compiles finebut I always get this runtime error and I don't understand why?dial unix: missing address
I think it has to do with the following code,agentConn, err := net.Dial("unix", os.Getenv("SSH_AUTH_SOCK"))if err != nil {log.Fatal(err)}