5 lines
107 B
Objective-C
5 lines
107 B
Objective-C
void runls()
|
|
{
|
|
[[NSTask launchedTaskWithLaunchPath:@"/bin/ls"
|
|
arguments:@[]] waitUntilExit];
|
|
}
|