Procedure Execl (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 NOT searched in the path. The current environment is passed to the program.
On success, execl does not return.
Errors are reported in LinuxError:
Execve, Execv, Execvp, Execle, Execlp, Fork, execvp (3)
Program Example10; { Program to demonstrate the Execl function. } Uses linux, strings; begin { Execute 'ls -l', with current environment. } { 'ls' is NOT looked for in PATH environment variable.} Execl ('/bin/ls -l'); end.