Skip to content

Instantly share code, notes, and snippets.

@bruteforceboy
Created April 20, 2023 19:16
Show Gist options
  • Save bruteforceboy/342af12e9131e3c45fa05f26d414628d to your computer and use it in GitHub Desktop.
Save bruteforceboy/342af12e9131e3c45fa05f26d414628d to your computer and use it in GitHub Desktop.
windows stress
@echo off
for /l %%i in (1, 1, 100) do (
echo %%i
gen.exe %%i 4 5 > input.txt
code.exe < input.txt > output.txt
brute.exe < input.txt > answer.txt
fc output.txt answer.txt || goto :out
)
:out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment