splitlen shrinks dictionary size?
#3
You need to recompile splitlen and change these two lines accordingly:

#define LEN_MIN 1
#define LEN_MAX 15

You could also try using a one-liner in bash to accomplish the same thing:

awk '{print length, $0}' < wordlist.dict | sort -n | cut -d ' ' -f 2- > wordlist-sorted.dict


Messages In This Thread
splitlen shrinks dictionary size? - by eXPeri3nc3 - 09-10-2013, 10:45 AM
RE: splitlen shrinks dictionary size? - by Mangix - 09-11-2013, 02:02 AM
RE: splitlen shrinks dictionary size? - by atom - 09-16-2013, 09:26 AM
RE: splitlen shrinks dictionary size? - by Kuci - 09-15-2013, 06:37 PM
RE: splitlen shrinks dictionary size? - by Mangix - 09-16-2013, 07:46 PM