www.digitalmars.com

D Programming Language 1.0

Last update Mon Oct 24 13:42:35 2011

std.process

Source:
std/process.d

int system(string command);
Execute command in a command shell.

Returns:
exit status of command

int execv(string pathname, string[] argv);
int execve(string pathname, string[] argv, string[] envp);
int execvp(string pathname, string[] argv);
int execvpe(string pathname, string[] argv, string[] 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.