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

8 lines
96 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
Program ExecuteSystemCommand;
uses
SysUtils;
begin
ExecuteProcess('/bin/ls', '-alh');
end.