Re: very short pipeShell program

2014-06-23 Thread John Carter via Digitalmars-d-learn
Ali, of course, is right. The only thing I'd add is for a Windowsy programmer (unless you have cygwin installed) you probably want something like "cmd.exe" instead of bash.

Re: very short pipeShell program

2014-06-22 Thread Ali Çehreli via Digitalmars-d-learn
On 06/22/2014 05:01 PM, WhatMeWorry wrote: After hours of reading (obviously not comprehending) std.process and looking at code samples, I still can't even do something this simple. Open a Windows command line and run miscellaneous commands. Only the first command, dir" is shown in the final out

very short pipeShell program

2014-06-22 Thread WhatMeWorry via Digitalmars-d-learn
After hours of reading (obviously not comprehending) std.process and looking at code samples, I still can't even do something this simple. Open a Windows command line and run miscellaneous commands. Only the first command, dir" is shown in the final output. auto pipe = pipeShell("dir", Redi