Mirror of syn3h_releases S3 bucket (http://releases.syn3h.com, formerly http://releases.terra.vision)
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
README.md | 1 year ago |
README.md
The mirror is large so it is at https://cloud.530s.cf/s/poRCRmger5pkHcM
Also here's a copy of the code I used in case it goes missing or something
var child_process = require("child_process");
var fs = require("fs");
var parser = require("fast-xml-parser");
child_process.execSync(`wget -nv http://releases.terra.vision/ -O ListBucketResult.xml`);
var xml = fs.readFileSync(`ListBucketResult.xml`, 'utf8');
var jso = parser.parse(xml);
var urls = jso.ListBucketResult.Contents.map(x => "http://releases.terra.vision/" + x.Key).filter(x => !x.endsWith("/"));
fs.writeFileSync("urllist.txt", urls.join("\n"));
child_process.spawnSync(`wget`, ["-nv", "-x", "-N", "-i", "urllist.txt"], {stdio:"inherit"});