Hello, I'm testing out running commands from Zig and currently this is what I'm doing
var proc = std.ChildProcess.init(command, alloc);
try proc.spawn();
_ = try proc.wait();
All is well and the command runs, but it writes to stdout in the terminal, and I don't want that. Is there a way to tell the ChildProcess not to write to stdout?