How do you run an external program and pass it command line parameters using C? If you have to use operating system API, include a solution for Windows, Mac, and Linux.
|
|
|
|||
|
|
|
|
One solution is the system function defined in stdlib.h
|
||
|
|
|
|
If you want to perform more complicated operations, like reading the output of the external program, you may be better served by the popen system call. For example, to programmatically access a directory listing (this is a somewhat silly example, but useful as an example), you could write something like this:
to give output like this
|
||
|
|
|
|
Can you explain the difference and give examples of each? |
||
|
|
|
|
On UNIX, I think you basically need to fork it if you want the spawned process to run detached from your the spawing one : For instance if you don't want your spawned process to be terminate when you quit your spawning process. Here is a page that explains all the subtle differences between Fork, System, Exec. If you work on Win,Mac and linux, I can recommend you the Qt Framework and its QProcess object, but I don't know if that's an option for you. The great advantages is that you will be able to compile the same code on windows linux and mac :
And for extra, you can even kill the child process from the mother process, and keep in communication with it through a stream. |
|||
|
|
|
|
I think you need to rewrite your question - opening an external process is not exactly the same as spawning another process...there is a difference. |
||
|
|
|
|
It really depends on what you're trying to do, exactly, as it's:
Nevertheless, I'll try to provide some information for you to decide.
The output will look as follows:
When you
Using this information, you should be able to write a very basic shell; one that takes process names on the command line and runs processes you tell it to. Of course, shells do more than that, like piping input and output, but you should be able to accomplish the basics using NOTE: This is *nix specific! This will NOT work on Windows. Hope this helped. |
||
|
|
|
|
If you need to check/read/parse the output of your external command, I would suggest to use popen() instead of system(). |
||
|
|
|
|
Speaking of platform-dependent recipes, on Windows use CreateProcess, on Posix (Linux, Mac) use |
||
|
|
