How can I scan and print the stdout of a process using os.StartProcess
I would like to get the stdout of a process as a stream in Go using os.StartProcess
, since exec.Command
does not work for my use case in windows (exec.Command
freezes after a while in windows, this is an old issue)
How can I scan and print the stdout of a process using os.StartProcess
I would like to get the stdout of a process as a stream in Go using os.StartProcess
, since exec.Command
does not work for my use case in windows (exec.Command
freezes after a while in windows, this is an old issue)