1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
Unofficial_ChatGPT_Client/scripts/download.js

31 lines
694 B
JavaScript
Raw Normal View History

2022-12-09 23:18:35 -05:00
const fs = require('fs');
const argv = process.argv.slice(2);
2022-12-15 00:30:43 -05:00
async function rewrite(filename) {
const content = fs.readFileSync(filename, 'utf8').split('\n');
2022-12-09 23:18:35 -05:00
const startRe = /<!-- download start -->/;
const endRe = /<!-- download end -->/;
let flag = false;
for (let i = 0; i < content.length; i++) {
if (startRe.test(content[i])) {
flag = true;
}
if (flag) {
content[i] = content[i].replace(/(\d+).(\d+).(\d+)/g, argv[0]);
}
if (endRe.test(content[i])) {
break;
}
}
2022-12-15 00:30:43 -05:00
fs.writeFileSync(filename, content.join('\n'), 'utf8');
}
async function init() {
rewrite('README.md');
rewrite('README-ZH.md');
2022-12-09 23:18:35 -05:00
}
2022-12-09 23:20:40 -05:00
init().catch(console.error);