Procedure Execle (Path : pathstr, Ep : ppchar) ;
Replaces the currently running program with the program, specified in path. Path is split into a command and it's options. The executable in path is searched in the path, if it isn't an absolute filename. The environment in ep is passed to the program.
On success, execle does not return.
Errors are reported in LinuxError:
Execve, Execv, Execvp, Execl, Execlp, Fork, execvp (3)
Program Example11; { Program to demonstrate the Execle function. } Uses linux, strings; begin { Execute 'ls -l', with current environment. } { 'ls' is NOT looked for in PATH environment variable.} { envp is defined in the system unit.} Execle ('/bin/ls -l',envp); end.