How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
| ||||
|
feedback
|
|
You can use
For more detailed information on interacting with the operating system from within your Objective-C application, you can see this document on Apple's Development Center: Interacting with the Operating System. Edit: Included fix for NSLog problem If you are using NSTask to run a command-line utility via bash, then you need to include this magic line to keep NSLog working:
In context:
An explanation is here: http://www.cocoadev.com/index.pl?NSTask | |||||||||||||
feedback
|
|
in the spirit of sharing... this is a method I use frequently to run shell scripts. you can add a script to your product bundle (in the copy phase of the build) and then have the script be read and run at runtime. note: this code looks for the script in the privateFrameworks sub-path. warning: this could be a security risk for deployed products, but for our in-house development it is an easy way to customize simple things (like which host to rsync to...) without re-compiling the application, but just editing the shell script in the bundle.
Edit: Included fix for NSLog problem If you are using NSTask to run a command-line utility via bash, then you need to include this magic line to keep NSLog working:
In context:
An explanation is here: http://www.cocoadev.com/index.pl?NSTask | ||||
|
feedback
|
|
fork, exec, and wait should work, if you're not really looking for a Objective-C specific way.
There's also system, which runs the command as if you typed it from the shell's command line. It's simpler, but you have less control over the situation. I'm assuming you're working on a Mac application, so the links are to Apple's documentation for these functions, but they're all | |||
|
feedback
|
|
There is also good old POSIX system("echo -en '\007'"); | |||||||||||
feedback
|
|
Or since Objective C is just C with some OO layer on top you can use the posix conterparts:
They are included from unistd.h header file. | |||
|
feedback
|
|
If the Terminal command requires Administrator Privilege (aka sudo), use AuthorizationExecuteWithPrivileges instead. The following will create a file named "com.stackoverflow.test" is the root directory "/System/Library/Caches".
| |||
|
feedback
|
|
slightly off topic, but IF you want to run curl from command line within app, then you want to take a look at this cocoa wrapping curlhandle. | |||
|
feedback
|
|
Custos Mortem said:
For blocking/non-blocking call issues regarding
Source code of asynctask.m is available at CocoaDev. | ||||
|
feedback
|