1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

修改SQL的一些无关紧要的小问题

This commit is contained in:
2022-11-09 16:14:10 +08:00
parent f4cdef2935
commit 6582bf8d40
2 changed files with 21 additions and 21 deletions

View File

@@ -100,7 +100,7 @@ let outputArr = [];
var a = fs.readFileSync(path.join(__dirname, `distribution_range/user.txt`), "utf-8").trim().split("\n").reverse().map(i => i.trim());
// a = a.filter((val, index) => index % 15 == 0); // 抽掉一些边界 不然SQL太多了
for (let i = 0; i < a.length; i++) {
outputArr.push(`start cmd /k "node index --utils comment --min ${a[i]} --max ${a[i + 1]} --limit 10000";`);
outputArr.push(`start cmd /k "node index --utils comment --min ${a[i]} --max ${a[i + 1]} --limit 10000"`);
}
outputArr.push("echo done.");
console.log(outputArr.join('\n'));