Re: Working with cmd

2020-04-18 Thread user1234 via Digitalmars-d-learn

On Friday, 17 April 2020 at 21:38:23 UTC, Quantium wrote:

Are there any libs which can be used to access cmd commands?


You can pipe cmd.exe:

---
import std.process : pipeProcess, ProcessPipes;
ProcessPipes pp = pipeProcess(["cmd.exe"]);
pp.stdin.writeln("echo foobar");
pp.stdin.close;
assert(pp.stdout.readln() == "foobar\n");
---

there are other ways depending on what you really want to do.


Re: Working with cmd

2020-04-18 Thread novice2 via Digitalmars-d-learn

On Friday, 17 April 2020 at 21:38:23 UTC, Quantium wrote:

Are there any libs which can be used to access cmd commands?


std.process

https://dlang.org/phobos/std_process.html#.execute



Working with cmd

2020-04-17 Thread Quantium via Digitalmars-d-learn

Are there any libs which can be used to access cmd commands?