mirror of
https://github.com/MeexReay/poshlostios.git
synced 2025-06-24 10:32:59 +03:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
/*
|
|
|
|
VGet - Vulgar Get
|
|
|
|
*/
|
|
|
|
async function main(args) {
|
|
if (args.length != 3) {
|
|
writeStdout("vget <url> <path>\n")
|
|
return 1
|
|
}
|
|
|
|
writeFile(args[2], await (await fetch(args[0])).text())
|
|
writeStdout("Файл "+args[1]+" вставлен внутрь пути "+args[2]+"\n")
|
|
|
|
return 0
|
|
} |