Files
winos/modules/test.bat
T
2025-05-16 11:48:40 +03:00

12 lines
160 B
Batchfile

@echo off
setlocal
set "init=%~dp0\..\settings\init.bat"
call %init%
for %%f in ("test\*.bat") do (
echo Running %%f
call "%%f"
)
endlocal