From ea5f3e0abe570911fc25f9a107a0ac574ba50357 Mon Sep 17 00:00:00 2001 From: David Madl Date: Fri, 15 May 2026 10:00:17 +0200 Subject: [PATCH] add fetch.md --- fetch.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fetch.md diff --git a/fetch.md b/fetch.md new file mode 100644 index 0000000..80cd248 --- /dev/null +++ b/fetch.md @@ -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 +} +``` +