CMD && comand not work

Kagamin spam at here.lot
Fri Dec 11 19:08:16 UTC 2020


On Thursday, 10 December 2020 at 21:01:30 UTC, Marcone wrote:
> In this very generic example && not work to finalize the 
> instruct and start a new instruct. Yes, I know dmd can build 
> and run without it, but this is only a example.
>
> execute(["cmd", "/c", "dmd test.d", "&&", "start test.exe"]);
>
> How can I substitute && ?

Try other variants:

execute(["cmd", "/c", "dmd test.d && start test.exe"]);
execute(["cmd", "/c", "dmd", "test.d", "&&", "start", 
"test.exe"]);


More information about the Digitalmars-d-learn mailing list