The nspipe tag has no wiki summary.
0
votes
0answers
19 views
Separate processes that communicate via a NSpipe
I need to realize a communication between two application using NSPipe channels.A NSPipe has to write data and the other has to read the data (Bi-directional) that will communicate between separate ...
0
votes
0answers
31 views
NSPipe communication channel for back and forth [closed]
I want to create two cocoa apps using NSPipe that send and receive the message back and forth. I should work like client & server communication and do that continuously.How to communicate one ...
0
votes
1answer
100 views
why waitForDataInBackgroundAndNotify doesn't work with the real time monitor with more than 1 argument?
I have found the following code from one of the API, and I'm trying to use it to do a real time monitoring of vm_stat 1:
BOOL terminated = NO;
-(void)realTimeMonitor
{
NSTask *task = [[NSTask ...
4
votes
1answer
124 views
Communication beetwen process using NSPipe,NSTask
I need to realize a communication beetwen two threads using NSPipe channels, the problem is that I don't need to call terminal command by specifying this methods.
[task ...
3
votes
1answer
118 views
Using NSTask and NSPipe causes 100% CPU usage
I'm trying to run a simple bash script using NSTask and direct the output to a text view. Once the task is executed, the CPU usage of my app is 100%, even though it's a simple echo (for now).
I ...
1
vote
1answer
268 views
NSTask/NSPipe read from Unix command
I am writing a Cocoa application which needs to execute a UNIX program and read its output, line by line, as they are produced. I set up a NSTask and NSPipe as such:
task = [[NSTask alloc] init];
...
0
votes
1answer
647 views
How to use NSTask run terminal commands in loop in consistent environment?
I want to use NSTask to simulate the Terminal to run commands. The codes as follows. It can get input in loop and return the process output.
int main(int argc, const char * argv[])
{
...
0
votes
1answer
113 views
Can someone help me spot a leak in this NSPipe/NSFileHandle code?
So I'm having this issue where once this NSFileHandle/NSPipe gets triggered... my CPU use and memory start going crazy. Problem is I'm finding it hard to find this leak. Any advice or help is ...
1
vote
0answers
126 views
NSTask does not receive stdout outside of Xcode 4.3.3
this is my first post, so let me send me many thanks to all the posting guys
outside there (I use SO extensively passively - great!)
I'm working on an video exporting tool for Mac OS X using the ...
0
votes
1answer
213 views
Clang NSTask with streams
Never-mind all the "why?","useless?", and "don't bother" comments. I want to compile a program inside another program using clang. I can create the NSTask and set up the arguments and it will work if ...
0
votes
1answer
151 views
Strange issue of output via NSPipe when execute shell command using NSTask
Here is my codes. When I set myCmd=@"cd /\nls -l\n" or myCmd=@"ls -l\n", it's no problem.
However, when I set myCmd=@"cd /\n", program is dead in the line if ((output =[[outPipe fileHandleForReading] ...
0
votes
1answer
177 views
Objective-c: How to use NSPipe output the illegal command echo in a NSTask?
I have code like following, it's ok, but I have 2 question about it.
1) If I assign some illegal para to sh, for example @"ls - l", then the outString is null. That is to say, it can not capture the ...
0
votes
1answer
55 views
Receiving data AFTER task termination?
I'm using NSTask and NSPipe to execute a command and asynchronously get its output.
The code I'm using is almost 100% the same as in my question, here (with the fixes included).
However, while I'm ...
2
votes
2answers
725 views
NSTask with multiple pipe input
I'm trying to use pipes to handle a command that requires multiple inputs, but not quite sure how to do it. Here's a snippet of what I'm trying to do. I know how to handle the first input, but I'm at ...

