std.process
- int system(char[] command);
- Execute command in a command shell.
Returns:
exit status of command
- int execv(char[] pathname, char[][] argv);
int execve(char[] pathname, char[][] argv, char[][] envp);
int execvp(char[] pathname, char[][] argv);
int execvpe(char[] pathname, char[][] argv, char[][] envp); - Execute program specified by pathname, passing it the arguments (argv)
and the environment (envp), returning the exit status.
The 'p' versions of exec search the PATH environment variable
setting for the program.