First time here? Check out the Help page!
1 | initial version |
I run a bunch of DOE2.1e files against a bunch of weather files using a batch file: @echo off setlocal EnableDelayedExpansion
for %%a in (*.doe) do ( for %%b in ("weather*.bin") do ( call rundoe2 %%a %%b"
)
)
2 | No.2 Revision |
I run a bunch of DOE2.1e files against a bunch of weather files using a batch file:
file:
@echo off
setlocal EnableDelayedExpansion for %%a in (*.doe) do (
for %%b in ("weather*.bin") ("weather\*.bin") do (
call rundoe2 %%a %%b"
)
)
)