11 lines
133 B
Batchfile
11 lines
133 B
Batchfile
@ECHO off
|
|
|
|
:main
|
|
break > build/saida.txt
|
|
|
|
for %%g in (test/*) do (
|
|
"build/solucao.exe" < test/%%g >> build/saida.txt
|
|
)
|
|
|
|
:end
|
|
echo Fim |