fpc/docs/linuxex/ex13.pp
2004-07-17 22:10:48 +00:00

12 lines
233 B
ObjectPascal

Program Example13;
{ Program to demonstrate the Shell function. }
Uses Unix;
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.