我正在使用 NSTask 和 setStandardOutput 将命令行工具的标准输出重定向到我的程序,因此我可以使用它进行处理。这很好用,但是当我运行我的程序时,工具的输出会显示为输出。我想完全重定向它,所以它只转到我指定的 NSPipe 对象。
这可能吗?下面的示例显示了输出标准输出,但我也想使用标准错误来执行此操作。
NSTask *ls=[[NSTask alloc] init];
NSPipe *pipe=[[NSPipe alloc] init];
NSFileHandle *handle;
NSString *string;
[ls setLaunchPath:@"/bin/ls"];
[ls setArguments:[NSArray arrayWithObjects:@"-l",@"/System",nil]];
[ls setStandardOutput:pipe];
handle=[pipe fileHandleForReading];
[ls launch];
string=[[NSString alloc] initWithData:[handle readDataToEndOfFile]
encoding:NSASCIIStringEncoding];