Executes a file relative to a directory.
fn execveat(fd: i32, filename: &CStr, argv: *const *const i8, envp: *const *const i8, flags: i32) -> i32
| Name | Description |
|---|---|
| fd | The directory relative to which relative paths will be interpreted. |
| filename | The file to execute. |
| argv | The argument pointer. |
| envp | The environment pointer. |
| flags | Flags used when executing a process. |
Returns success or an error value.