Tagged Questions

1
vote
3answers
223 views

NSTask Output Formatting

I'm using an NSTask to grab the output from /usr/bin/man. I'm getting the output but without formatting (bold, underline). Something that should appear like this: Bold text with underline (note the ...
1
vote
4answers
395 views

Code problem - objective c - waiting for string value to appear in string value

task = [NSTask new]; [task setLaunchPath:@"/bin/sh"]; [task setArguments:[NSArray arrayWithObject:@"/applications/jarvis/brain/server.sh"]]; [task setCurrentDirectoryPath:@"/"]; NSPipe *outputPipe = ...
0
votes
1answer
23 views

NSTask to retrieve the output of an external command stopped woking on Lion

The following code was working fine until I upgraded to OSX Lion. It called an external command and saved the output into a NSString. I have no idea why it stopped working. Any ideas? -(NSString *) ...
0
votes
1answer
25 views

NSTask to NSString compare don't work

I'm currently trying to compare a shell output to a string. But it won't work at all! StringOne = [[NSString alloc] initWithData:dataTwo encoding:NSUTF8StringEncoding]; if([StringOne ...
0
votes
1answer
257 views

Getting data from the nstask - communicating with command line - objective c

I know how to send data to the task: NSData *charlieSendData = [[charlieImputText stringValue] dataUsingEncoding:NSUTF8StringEncoding]; [[[task standardInput] fileHandleForWriting] ...
0
votes
4answers
542 views

Using NSTask: app freezing after returning output

Hi I have the following code: - (IBAction)runTask:(id)sender { NSTask *proc; NSPipe *output; NSData *data; NSString *buffer; proc = [[NSTask alloc] init]; output = [[NSPipe ...