Can someone help me convert the following code into code that instead has two NSTasks for "cat" and "grep", showing how the two can be connected together with pipes? I suppose I would prefer the latter approach, since then I no longer have to worry about quoting and stuff.

NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/bin/sh"];

NSArray *arguments;
arguments = [NSArray arrayWithObjects: @"-c",
             @"cat /usr/share/dict/words | grep -i ham", nil];
[task setArguments: arguments];
[task launch];

Update: Note that cat and grep are here just meant as (lousy) example. I still want to do this for commands that make more sense.

link|improve this question

As a matter of shell command style: Avoid cat whenever possible. grep accepts multiple file arguments after the pattern, so you should be using grep -i ham /usr/share/dict/words. And, look: Your problem goes away, as you can run grep directly and no longer need a pipe. – Jeremy W. Sherman Jun 5 '11 at 16:29
This was merely an example. As it turned out, a lousy example. Please replace cat and grep with whatever else makes sense to you :) Thanks for the pointer for this particular example! – Enchilada Jun 5 '11 at 17:11
feedback

1 Answer

up vote 2 down vote accepted

Use a instance of NSTask for each program and connect their standard inputs/outputs with NSPipe:

NSPipe *pipe = [[NSPipe alloc] init];
NSPipe *resultPipe = [[NSPipe alloc] init];

NSTask *task1 = [[NSTask alloc] init];
[task1 setLaunchPath: @"/bin/cat"];
[task1 setStandardOutput: pipe];
[task1 launch];

NSTask *task2 = [[NSTask alloc] init];
[task2 setLaunchPath: @"/bin/grep"];
[task2 setStandardInput: pipe];
[task2 setStandardOutput: resultPipe];
[task2 launch];

NSData *result = [[resultPipe fileHandleForReading] readDataToEndOfFile];
link|improve this answer
Are you sure I don't have to do [task1 waitUntilExit] to make sure that task1 has outputted all that it wishes to output first? – Enchilada Jun 5 '11 at 21:21
1  
No, the pipe will take care of that. You actually can’t wait for the first task to finish before you start the second since the buffer space in a pipe is limited. – Sven Jun 6 '11 at 9:45
1  
You shouldn’t use the NSTask method waitUntilExit in this situation. I updated my sample code to read the output of the second task. – Sven Jun 6 '11 at 10:00
1  
After readDataToEndOfFile the second task closed the pipe. The process might still be running, but it cannot output any more data, so there is no point in waiting for the process to terminate. – Sven Jun 6 '11 at 12:01
1  
True, if you need the return value of the child process you have to wait for it to finnish, I should have mentioned that before. – Sven Jun 6 '11 at 12:08
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.