exec Family: execv
execv()
uses pathname, argument array and original ENV to execute the program.
You need to specify the absolute path for your target program and array of char*
for the program arguments.
Lastly execv()
uses original system enviroment variables for the new program.
Last updated