Tagged Questions

1
vote
3answers
216 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
384 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
20 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
220 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
531 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 ...