Revision history  [back]

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" 

    )
)

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"

)
)

)