Procedure Execlp (Path : pathstr) ;
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 current environment is passed to the program.
On success, execlp does not return.
Errors are reported in LinuxError:
Execve, Execv, Execvp, Execle, Execl, Fork, execvp (3)
Program Example12; { Program to demonstrate the Execlp function. } Uses linux, strings; begin { Execute 'ls -l', with current environment. } { 'ls' is looked for in PATH environment variable.} { envp is defined in the system unit.} Execlp ('ls -l',envp); end.