RosettaCodeData/Task/Execute-a-system-command/Objective-C/execute-a-system-command-1.m

6 lines
107 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void runls()
{
[[NSTask launchedTaskWithLaunchPath:@"/bin/ls"
arguments:@[]] waitUntilExit];
}