blob: 7a5d5c371e35875911dec341760ec7692c600af0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Program Example11;
{ Program to demonstrate the Execle function. }
Uses Unix, 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.
|