mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 12:13:48 +02:00
12 lines
239 B
ObjectPascal
12 lines
239 B
ObjectPascal
Program Example77;
|
|
|
|
{ Program to demonstrate the FPExecL function. }
|
|
|
|
Uses Unix, strings;
|
|
|
|
begin
|
|
{ Execute 'ls -l', with current environment. }
|
|
{ 'ls' is NOT looked for in PATH environment variable.}
|
|
FpExecL ('/bin/ls',['-l']);
|
|
end.
|