Working with cmd

user1234 user1234 at 12.de
Sat Apr 18 07:31:48 UTC 2020


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.


More information about the Digitalmars-d-learn mailing list