How to Merge 2 Big Wordlists in Windows
#2
Use command line (cmd). "type wordlist1.txt wordlist2.txt | sort /u /o combinedlist.txt"

Sort command converts from utf8 to ansi tho.

You can also do "type wordlist1.txt wordlist2.txt >> wordlist3.txt" and later sort any program you want. I use notepad++ usually.

https://learn.microsoft.com/en-us/window...mands/type
https://learn.microsoft.com/en-us/window...mands/sort
Reply


Messages In This Thread
RE: How to Merge 2 Big Wordlists in Windows - by aikiuslik - 06-15-2023, 04:32 PM