mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:10:59 +02:00
12 lines
232 B
ObjectPascal
12 lines
232 B
ObjectPascal
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.
|