Re: How does one run a linux system command from a D main() fcn ?

2020-08-04 Thread Dennis via Digitalmars-d-learn
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

Re: How does one run a linux system command from a D main() fcn ?

2020-08-04 Thread Luhrel via Digitalmars-d-learn
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

How does one run a linux system command from a D main() fcn ?

2020-08-04 Thread Andy Balba via Digitalmars-d-learn
i.e. D equivalent to C++ command system("MyExe")