TwitchDownloader/startmulti - Copy.bat

12 lines
238 B
Batchfile
Raw Permalink Normal View History

2026-02-09 19:01:24 +01:00
@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...