replace wget with download script
This commit is contained in:
parent
ccae867353
commit
8d51d354a9
3 changed files with 14 additions and 3 deletions
12
scripts/downloadFile.ts
Normal file
12
scripts/downloadFile.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
const http = require('https');
|
||||
const fs = require('fs');
|
||||
|
||||
// Could use yargs to have more validation but wanted to keep it simple
|
||||
const args = process.argv.slice(2);
|
||||
const FILE_URL = args[0];
|
||||
const DESTINATION = args[1];
|
||||
|
||||
console.log(`Downloading ${FILE_URL} to ${DESTINATION}`)
|
||||
|
||||
const file = fs.createWriteStream(DESTINATION);
|
||||
http.get(FILE_URL, response=>response.pipe(file));
|
Loading…
Add table
Add a link
Reference in a new issue