From 7aebda8a06aa23c8646860bdd95c92a518f831af Mon Sep 17 00:00:00 2001 From: BreakinBenny Date: Sun, 6 Sep 2020 18:26:01 +0200 Subject: [PATCH 1/2] COMMENT in batch Marked as comment in case someone were to copypaste that into a batch file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0449d0fe..ac8ce9f5 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ With files multiple subsongs you need to specify manually subsong (by design, to massive data dumps since some formats have hundred of subsongs), but you could do some command line tricks: ``` -REM extracts from subsong 5 to 10 in file.fsb +: REM extracts from subsong 5 to 10 in file.fsb for /L %A in (5,1,10) do test.exe -s %A -o file_%A.wav file.fsb ``` From fa8d8b7c9fbcc4e50c926ea47b33e8473d759417 Mon Sep 17 00:00:00 2001 From: BreakinBenny Date: Sun, 6 Sep 2020 18:42:56 +0200 Subject: [PATCH 2/2] Update README.md Also removed a little superfluous space in that REM extract thing. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac8ce9f5..254cd7d8 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ massive data dumps since some formats have hundred of subsongs), but you could d some command line tricks: ``` : REM extracts from subsong 5 to 10 in file.fsb -for /L %A in (5,1,10) do test.exe -s %A -o file_%A.wav file.fsb +for /L %A in (5,1,10) do test.exe -s %A -o file_%A.wav file.fsb ``` Output filename in `-o` may use multiple wildcards: