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