mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-03 10:53:41 +02:00
12 lines
234 B
ObjectPascal
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.
|