D
Language
Phobos
Comparisons
object
std
std.base64
std.boxer
std.compiler
std.conv
std.ctype
std.date
std.file
std.format
std.gc
std.intrinsic
std.math
std.md5
std.mmfile
std.openrj
std.outbuffer
std.path
std.process
std.random
std.recls
std.regexp
std.socket
std.socketstream
std.stdint
std.stdio
std.cstream
std.stream
std.string
std.system
std.thread
std.uri
std.utf
std.zip
std.zlib
std.windows
std.linux
std.c
std.c.stdio
std.c.windows
std.c.linux
|
std.process
- int system(char[] command)
- Execute command in a command shell.
Returns exit status of command.
- int execv(char[] program, char[][] arguments)
- int execve(char[] program, char[][] arguments, char[][] environment)
- int execvp(char[] program, char[][] arguments)
- int execvpe(char[] program, char[][] arguments, char[][] environment)
- Execute program, passing it the arguments
and the environment, returning the exit status.
The 'p' versions of exec search the PATH environment variable
setting for program.
|