Chapter 34. NSTask

Each application that you have created is in fact a directory, and somewhere down in that directory is an executable file. To run an executable on a Unix machine, such as your Mac, a process is forked, and the new process executes the code in that file. Many executables are command line tools, and some are quite handy. This chapter shows you how to run command line tools from your Cocoa application by using the class NSTask.

NSTask is an easy-to-use wrapper for the Unix functions fork() and exec(). You give it a path to an executable and launch it. Many processes read data from standard-in and write to standard-out and standard-error. Your application can use NSTask to attach pipes to carry data to and from the external process. ...

Get Cocoa Programming for Mac OS X, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.