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).
Hi, I want to write a simple program, it first initialize something, and then call bash (and pass stdin/stdout to bash) to interact with user. I need to keep my program running since it is a service. Is QProcess suitable for this?
I found a solution. fork and parent task exec bash, child task as service task.