[][src]Function nix::unistd::fexecve

pub fn fexecve(fd: RawFd, args: &[CString], env: &[CString]) -> Result<Void>

Replace the current process image with a new one (see fexecve(2)).

The fexecve function allows for another process to be "called" which will replace the current process image. That is, this process becomes the new command that is run. On success, this function will not return. Instead, the new program will run until it exits.

This function is similar to execve, except that the program to be executed is referenced as a file descriptor instead of a path.