123456789101112 |
- 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.
|