add fetch.md

This commit is contained in:
2026-05-15 10:00:17 +02:00
parent eff7808742
commit ea5f3e0abe

14
fetch.md Normal file
View File

@@ -0,0 +1,14 @@
```
$adb = "C:\Users\david\AppData\Local\Android\Sdk\platform-tools\adb.exe"
1..9 | ForEach-Object {
$n = "{0:D3}" -f $_
$name = "Rhythmology_$n.json"
$args = @(
"exec-out", "run-as", "at.lockstep.player", "cat",
"files/beat_annotations/$name"
)
Start-Process -FilePath $adb -ArgumentList $args `
-NoNewWindow -Wait -RedirectStandardOutput $name
}
```