QProcess使用

void MainWindow:: btn_linux_3_Clicked(){
    qDebug() <<"点击了btn_linux_3";
    QProcess *q = NULL;
    q = new QProcess(this);
    
    QString command = QString("sh xx.sh");
    q->start("/bin/bash", QStringList() << "-c" << command );
}

点击按钮,启动xx.sh脚本,脚本是一行命令,启动其他应用

你可能感兴趣的:(qt,开发语言)