加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
compile.cpp 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
ouuan 提交于 2019-05-01 23:41 . config.ini
// compile <path> [option]
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
ifstream config("config.ini");
string command;
int main(int argc, char* argv[])
{
if (argc < 2 || argc > 3)
{
puts("compile <path> [option]");
return 1;
}
int p;
getline(config, command);
getline(config, command);
getline(config, command, ' ');
getline(config, command);
config.close();
p = command.find("<path>");
while (p < command.size())
{
command.replace(p, 6, argv[1]);
p = command.find("<path>");
}
if (argc >= 3) command += argv[2];
return system(command.c_str());
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化