1、QProcess *p = new QProcess(this);

2、QString str = qApp->applicationDirPath() + "/update.sh";//这是我的shell脚本的目录

3、if(p->startDetached(str))

{

  qDebug() << "success";

}else

{

  qDebug() << "fail";

}

05-10 23:43