ex10.pp 232 B

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