RosettaCodeData/Task/Execute-a-system-command/Objective-C/execute-a-system-command-1.m
2023-07-01 13:44:08 -04:00

5 lines
107 B
Objective-C

void runls()
{
[[NSTask launchedTaskWithLaunchPath:@"/bin/ls"
arguments:@[]] waitUntilExit];
}