blob: a0d4d18dff19d8ada35117e86117e02957eb900f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Program Example13;
{ Program to demonstrate the Shell function. }
Uses oldlinux;
begin
{ This will send the output of 'ls -l' to the file ls.out }
{ thanks to the shell's redirection functionality }
Shell ('ls -l >ls.out')
end.
|