Created
April 20, 2023 19:16
-
-
Save bruteforceboy/342af12e9131e3c45fa05f26d414628d to your computer and use it in GitHub Desktop.
windows stress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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