ex56.pp 220 B

12345678910111213
  1. program example56;
  2. uses linux;
  3. { Program to demonstrate the Shell function }
  4. Var S : Longint;
  5. begin
  6. Writeln ('Output of ls -l *.pp');
  7. S:=Shell ('ls -l *.pp');
  8. Writeln ('Command exited wwith status : ',S);
  9. end.