Skip to content
/ taskit Public
forked from atg/taskit

NSTask reimplementation a simpler interface

License

Notifications You must be signed in to change notification settings

darvin/taskit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 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

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%