May 30, 2013
I want to pipe the contents of a D string to the stdin of a pipe created
with one of the std.process functions.
I want to avoiding resorting to escaping the string.
How would i do that?
Thanks


May 30, 2013
On Thu, 30 May 2013 14:40:21 -0400, Timothee Cour <thelastmammoth@gmail.com> wrote:

> I want to pipe the contents of a D string to the stdin of a pipe created
> with one of the std.process functions.
> I want to avoiding resorting to escaping the string.
> How would i do that?
> Thanks

use rawWrite

-Steve