fpc/docs/linuxex/ex13.pp
1998-03-25 11:26:49 +00:00

12 lines
234 B
ObjectPascal

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