This commit is contained in:
2023-04-09 22:12:29 +08:00
commit fba75a8df0
48 changed files with 3413 additions and 0 deletions

18
command.cpp Normal file
View File

@@ -0,0 +1,18 @@
/*
* gfdgd xi、为什么您不喜欢熊出没和阿布呢
* 依照 GPLV3 开源
*/
#include "command.h"
#include <QProcess>
Command::Command()
{
}
QString Command::GetCommand(QString command){
QProcess process;
process.start(command);
process.waitForStarted();
process.waitForFinished();
return QString::fromLocal8Bit(process.readAllStandardOutput());
}