October 2018
Beginner
794 pages
19h 23m
English
Now for the execle(3) API; its signature is:
int execle(const char *path, const char *arg, ...,char * const envp[]);
As before, the l in execle implies a long format variable argument list; the e implies that we can pass along an array of environment variables to the successor process.
By default, the successor will inherit the environment of the predecessor process. ...
Read now
Unlock full access