`exec.Command()` produces no output when running `kcat` – Docker
I need to wrap kcat in a Go function to read a series of topic messages, so thought to use exec.Command() for this is as follows: package main import ( "fmt" "os/exec" ) func main() { cmd := exec.Command("kcat", "-b…