Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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?
That's more a subject to bash, not to Qt.
You can call bash with -c <command> parameter like this:
@ QString command = "bash"; QStringList args; args << "-c" << "dejagnu"; QProcess p(this); p.start(command, args); @