ex77.pp 239 B

1234567891011
  1. Program Example77;
  2. { Program to demonstrate the FPExecL function. }
  3. Uses Unix, strings;
  4. begin
  5. { Execute 'ls -l', with current environment. }
  6. { 'ls' is NOT looked for in PATH environment variable.}
  7. FpExecL ('/bin/ls',['-l']);
  8. end.