Thread overview
How does one run a linux system command from a D main() fcn ?
Aug 04, 2020
Andy Balba
Aug 04, 2020
Luhrel
Aug 04, 2020
Dennis
August 04, 2020
i.e.  D  equivalent to C++ command system("MyExe")
August 04, 2020
On Tuesday, 4 August 2020 at 19:52:47 UTC, Andy Balba wrote:
> i.e.  D  equivalent to C++ command system("MyExe")

https://dlang.org/library/std/process.html
August 04, 2020
On Tuesday, 4 August 2020 at 19:52:47 UTC, Andy Balba wrote:
> i.e.  D  equivalent to C++ command system("MyExe")

Apart from std.process, you can also call the C function in D after importing core.stdc.stdlib:

https://dlang.org/library/core/stdc/stdlib/system.html