Example usage:
[AsyncTask launchPath:@"/sbin/ping" currentDirectoryPath:nil arguments:@[@"github.com"] outputBlock:^(NSString *outString) {
NSLog(@"OUT:%@",outString);
} errBlock:^(NSString *errString) {
NSLog(@"ERR:%@",errString);
} onLaunch:^{
NSLog(@"Launch");
} onExit:^{
NSLog(@"Exit");
}];
View the LICENSE file for more info.