RosettaCodeData/Task/Execute-a-system-command/Pascal/execute-a-system-command.pas

8 lines
96 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Program ExecuteSystemCommand;
uses
SysUtils;
begin
ExecuteProcess('/bin/ls', '-alh');
end.