Go version
1.25
Output of go env in your module/workspace:
What did you do?
Read the go doc on os/exec.Cmd https://pkg.go.dev/os/exec#Cmd
What did you see happen?
I read the line
A Cmd cannot be reused after calling its Cmd.Run, Cmd.Output or Cmd.CombinedOutput methods.
What did you expect to see?
I expected that this means it can be resued after calling other methods like Start, but no - the truth is that Start is the method that blocks reuse.