QT4:如何使用 QProcess 运行多个 shell 命令?
我刚刚开始使用 QT,想为我使用的一些 shell 脚本创建一个简单的 GUI。
我想做两个简单的操作:
- 使用 SSH 连接到服务器,
- 连接到服务器后运行一个命令(例如 mysqldump)。
到目前为止,我设法像这样进行 SSH 连接:
QStringList args_ssh;
args_ssh << ui->lineEdit_sshUser->text() + "@" + ui->lineEdit_sshHost->text();
commandProcess.start("ssh", args_ssh);
工作正常,它会提示密码并连接。但我怎样才能从那里执行进一步的命令呢?我尝试在下面启动第二个 commandProcess,但这似乎不是这样。
I'm just starting to play around with QT and want to create a simple GUI for some shell scripts I use.
I'd like to do two simple actions :
- connect to a server with SSH
- run a command once connected to the server (a mysqldump for ex.)
So far I manage to do the SSH connexion like this :
QStringList args_ssh;
args_ssh << ui->lineEdit_sshUser->text() + "@" + ui->lineEdit_sshHost->text();
commandProcess.start("ssh", args_ssh);
That works fine, it prompts for the password and connects. But how can I execute further commands from there ? I tried to start a second commandProcess just under, but that doesn't seem to be the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QProcess 源自 QIODevice,这意味着您可以读取/写入 它就像一个文件。该过程启动后,通过标准 QIODevice 调用发送后续命令。
QProcess is derived from QIODevice which means you can read from/write to it like a file. After the process is started, send your followup commands via standard QIODevice calls.