Skip to content

atg/taskit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taskit — Simpler NSTask

Taskit is a reimplementation of NSTask with a simplified and block-ready interface.

    Taskit *task = [Taskit task];
    task.launchPath = @"/bin/echo";
    [task.arguments addObject:@"Hello World"];
    task.receivedOutputString = ^void(NSString *output) {
        NSLog(@"%@", output);
    };
    
    [task launch];

License

Taskit is licensed under the WTFPL.

About

NSTask reimplementation a simpler interface

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published