Post
Topic
Board Development & Technical Discussion
Re: VanitySearch (Yet another address prefix finder)
by
nc50lc
on 24/03/2020, 02:53:14 UTC
Good solution, but what if I want create several files?
-snip-
How to do that?
Easy! Just create a batch file containing these commands:
Code:
@set input=100test.txt
@set output=testresult.txt

vanitysearch -stop -i %input% -o 01%output%
vanitysearch -stop -i %input% -o 02%output%
vanitysearch -stop -i %input% -o 03%output%
vanitysearch -stop -i %input% -o 04%output%
vanitysearch -stop -i %input% -o 05%output%
vanitysearch -stop -i %input% -o 06%output%
vanitysearch -stop -i %input% -o 07%output%
vanitysearch -stop -i %input% -o 08%output%
vanitysearch -stop -i %input% -o 09%output%
vanitysearch -stop -i %input% -o 10%output%

Change "100test.txt" depending on the name of your input file (following the format of my previous post);
Change "testresult.txt" depending on what name you want your output files be.
Output files will be named 01testresult.txt, 02testresult.txt, 03testresult.txt.... 10testresult.txt

-Edit-
Wait, I just found out that the 50-100 consecutive results of the output files are the same address, need further testing.
@Jean_Luc What do you think is the issue?