Set the process' environment variables from the associative array received by the method.
This also clears the copyEnv flag.
associative array of strings containing the environment variables for the process. The variable name should be the key used for each entry.
the env set.
char[][char[]] env; env["MYVAR1"] = "first"; env["MYVAR2"] = "second"; p.env = env;
See Implementation
Set the process' environment variables from the associative array received by the method.
This also clears the copyEnv flag.