QT执行shell脚本或者执行linux指令

2019-11-01 10:00:16来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

QT执行shell脚本或者执行linux指令

由于我在做linux下的QT开发,有时候会用到shell脚本的辅助,但是需要QT运行shell脚本并获取执行结果,今天给大家分享下我的技巧,废话少说直接上代码:

//执行shell指令或者shell脚本的方法
QString Common::executeLinuxCmd(QString strCmd)
{
    QProcess p;
    p.start("bash", QStringList() <<"-c" << strCmd);
    p.waitForFinished();
    QString strResult = p.readAllStandardOutput();
    return strResult;
}

//实例
QString strResult1 = executeLinuxCmd("sudo sh /home/test.sh");

QString strResult2 = executeLinuxCmd("cat /etc/hostname");


大家根据自己的业务需求去处理strResult1和strResult2,相信我的代码很清晰了吧!!!

  


原文链接:https://www.cnblogs.com/xupeidong/p/11777031.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Ubuntu 软件管理

下一篇:Prometheus(二):Prometheus 监控Windows机器