Most systems don't support this functionality without a kernel patch or 
debugger trick. You can manipulate the file descriptor before the process is 
born, everything afterwards is luck or system specific. In Go, you have a lot 
more power: 

os.Stdout, os. Stderr = os.Stderr, os.Stdout 

fmt.Println("?")

I recommend the os.Exec approach

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to