fpc/docs/olinuxex/ex13.pp
2004-10-16 13:14:03 +00:00

12 lines
237 B
ObjectPascal

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.