1、QProcess *p = new QProcess(this);2、QString str = qApp->applicationDirPath() + "/update.sh";//这是我的shell脚本的目录3、if(p->startDetached(str)){ qDebug() << "success";}else{ qDebug() << "fail";}