Typescript for Linux

This commit is contained in:
2025-09-06 21:43:08 -07:00
parent d06d417475
commit 2b13c8c198
4 changed files with 138 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));