Forum Navigation
Process Execution
Moderators:
kris
Posted: 09/27/08 05:15:50http://dsource.org/projects/tango/wiki/PhobosTangoMigration claims that tango.sys.Process is a good alternative for std.process but afaik there is no cross platform sollution to execute a process without having to wait on it like there is in this sample piece of phobos code:
import std.process; int main(char[][] args) { execv(args[1],args[2..3]); return 0; }