8 lines
96 B
Text
8 lines
96 B
Text
|
|
Program ExecuteSystemCommand;
|
||
|
|
|
||
|
|
uses
|
||
|
|
SysUtils;
|
||
|
|
begin
|
||
|
|
ExecuteProcess('/bin/ls', '-alh');
|
||
|
|
end.
|