Easy question: what is the easiest way to execute an external program (with parameters) from C++ (using g++ and Linux)? Is there an easier way rather than doing fork/exec and waiting? I just need to execute the command and wait for it to finish.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Kind of depends on how much you want to interact with the program. If not at all, you can easily just use If you want some I/O then you can use And if even that is not enough, you will end up will |
|||
|
|
|
The system() function:
|
|||
|
|
|
I have learnt to use screen command a lot, especially for long running scripts. It may be bit of an overkill for you, but it should definitely do the job in this case. |
|||||
|