TwitchDownloader/startmulti - Copy.bat
2026-02-09 19:01:24 +01:00

12 lines
238 B
Batchfile

@echo off
setlocal
rem Loop through the list of parameters
for %%P in (%*) do (
rem Start a new instance of start.bat for this parameter
start /b cmd /c "start start.bat %%P"
)
echo All instances have been started. Exiting...