Re: [go-nuts] cmd.Exec over TCP

2017-02-25 Thread Dave Cheney
On Sunday, 26 February 2017 16:54:25 UTC+11, Oleg Puchinin wrote: > > Hello ! > What is wrong and how to do it ? > What did you expect to happen? What happened instead? > > func handleconnection(tcp net.Conn) { > cmd := exec.Command("/bin/bash") > cmd.Stdin = tcp > cmd.Stdout = tcp

[go-nuts] cmd.Exec over TCP

2017-02-25 Thread Oleg Puchinin
Hello ! What is wrong and how to do it ? func handleconnection(tcp net.Conn) { cmd := exec.Command("/bin/bash") cmd.Stdin = tcp cmd.Stdout = tcp cmd.Run() } go handle connection Thanks ! Oleg. -- You received this message because you are subscribed to the Google Groups "golang