I want to be able to 'continuously' append the output of a command-line into a QTextEdit.

I have a GUI app that uses QProcess to start a command-line app. The CL app has tons of output via printf's.

I am current connecting to the readyRead() signal of the QProcess and using readAllStandardOutput() to post the info into the QTextEdit. The problem with this is that I only get the output once the CL app is finished.

What do I need to do to get the output as it happens?

TIA, Sam.