I'm trying to read the timed output of a pipeShell command but it only results in empty output.
Does anyone know why this is? ``` auto p = pipeShell("time ls"); foreach(str; p.stdout.byLine) { writefln("%s",str); } ```
Anthony via Digitalmars-d-learn Wed, 27 Jan 2021 01:40:27 -0800
I'm trying to read the timed output of a pipeShell command but it only results in empty output.
Does anyone know why this is? ``` auto p = pipeShell("time ls"); foreach(str; p.stdout.byLine) { writefln("%s",str); } ```