Hi
How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
Thanks.
|
6
|
Hi How can I execute a terminal command (like Thanks.
|
|||
|
|
|
|
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. |
||||||||
|
|
|
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 |
||
|
|
|
|
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.
|
||
|
|
|
|
There is also good old POSIX system("echo -en '\007'"); |
|||
|
|
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. |
||
|
|