Tagged Questions
1
vote
2answers
318 views
NSTask Does Not Terminate
I'm trying to use NSTask to run the UNIX 'apropos' command. Here's my code:
NSTask *apropos = [[NSTask alloc] init];
NSPipe *pipe = [[NSPipe alloc] init];
[apropos setLaunchPath:@"/usr/bin/apropos"];
...
0
votes
2answers
411 views
Using NSTask with an NSPipe and a Perl script that spawns another process
I am running a Perl script within an NSTask object with it's output going into an NSPipe. I am using notifications to receive it's output periodically and update the GUI.
The Perl script actually ...