fpc/docs/linuxex/ex12.pp
1998-03-25 11:26:49 +00:00

13 lines
271 B
ObjectPascal

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.