blob: 0edaf97e13f62ff2d5fb8ee4c56cfdd439b59a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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.
|