Navigation
|
Synopsis Start a new external process.
Function -
PID createProcess(str processCommand)
-
PID createProcess(str processCommand, loc workingDir)
-
PID createProcess(str processCommand, list[str] args)
-
PID createProcess(str processCommand, list[str] args, loc workingDir)
-
PID createProcess(str processCommand, map[str,str] envVars)
-
PID createProcess(str processCommand, map[str,str] envVars, loc workingDir)
-
PID createProcess(str processCommand, list[str] args, map[str,str] envVars)
-
PID createProcess(str processCommand, list[str] args, map[str,str] envVars, loc workingDir)
Usage import util::ShellExec;
Description - Start a new external process.
- Start a new external process in a given working directory.
- Start a new external process with the given arguments.
- Start a new external process with the given arguments in the given working directory.
- Start a new external process with the given environment variables.
- Start a new external process with the given environment variables in the given working directory.
- Start a new external process with the given arguments and environment variables.
- Start a new external process with the given arguments and environment variables in the given working directory.
|