Typescript for Linux

This commit is contained in:
2025-09-06 21:39:27 -07:00
parent d06d417475
commit e3bb5533b1
4 changed files with 137 additions and 15 deletions

8
Scripts/lsblk.ts Normal file
View File

@ -0,0 +1,8 @@
fetch('https://html.affirm.duckdns.org/lsblk.json')
.then((res:any) => res.text())
.then((text:any) => {
const data = JSON.parse(text);
console.log(data);
})
.catch((e:any) => console.error(e));