array of strings with the process' arguments; the first argument must be the process' name; the arguments can be empty.
associative array of strings with the process' environment variables; the variable name must be the key of each entry.
Deprecated: Use properties or the constructor to set these parameters instead.
ProcessCreateException if the process could not be created successfully; ProcessForkException if the call to the fork() system call failed (on POSIX-compatible platforms).
Remarks: The process must not be running and the provided list of arguments must not be empty. If there was any argument already present in the args member, they will be replaced by the arguments supplied to the method.
auto p = new Process(); char[][] args; args ~= "ls"; args ~= "-l"; p.execute(args, null);
Execute a process using the command line arguments as parameters to this method.
Once the process is executed successfully, its input and output can be manipulated through the stdin, stdout and stderr member PipeConduit's.
This also clears the copyEnv flag