- as a
collection of functions.
Standard names of such
functions in C are
execl, execle, execlp, execv, execve, and
execvp (see below), but not "exec" itself...
- Name
Description Notes execl, execle, execlp,
execlpe load and
execute a new
child process by
placing it in
memory previously occupied by the
parent process...
-
write to a file
descriptor Process _exit terminate the
calling process execl execlp execle execv execvp execvpe execute a file
fexecve execute program...
-
provided packages or by
interfacing to C or POSIX. C system("command");
execl(path, args); or execv(path, arglist); C++ Objective-C [NSTask...