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

6 lines
107 B
Mathematica
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
void runls()
{
[[NSTask launchedTaskWithLaunchPath:@"/bin/ls"
2014-04-02 16:56:35 +00:00
arguments:@[]] waitUntilExit];
2013-04-10 22:43:41 -07:00
}