09-11-2013, 02:02 AM
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
#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