QT4:如何使用 QProcess 运行多个 shell 命令?

发布于 2024-12-11 03:39:14 字数 435 浏览 0 评论 0原文

我刚刚开始使用 QT,想为我使用的一些 shell 脚本创建一个简单的 GUI。

我想做两个简单的操作:

  1. 使用 SSH 连接到服务器,
  2. 连接到服务器后运行一个命令(例如 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 :

  1. connect to a server with SSH
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落画卷 2024-12-18 03:39:14

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文