summaryrefslogtreecommitdiff
path: root/fpcdocs/olinuxex/ex56.pp
blob: 487c579b56461c64602e8c39dcd54810bb33d697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
program example56;

uses oldlinux;

{ Program to demonstrate the Shell function }

Var S : Longint;

begin
  Writeln ('Output of ls -l *.pp');
  S:=Shell ('ls -l *.pp');
  Writeln ('Command exited wwith status : ',S);
end.