QProcess - spawning another process within a process
I can successfully spawn the Cygwin’s bash process from my Qt application. However, I want cygwin’s bash to start another process (dejagnu) within itself. How can I achieve this?
1 reply
That’s more a subject to bash, not to Qt.
You can call bash with -c <command> parameter like this:
- QStringList args;
- args << "-c" << "dejagnu";
- p.start(command, args);
You must log in to post a reply. Not a member yet? Register here!


