wordlist http://tpb.unblocked.co/torrent/5945...2813_GB%29.rar (my email is included for any help) And many thanks to g0tmi1k for featuring my list on his blog

================================================== =====

Here are some useful commands to clean-up your wordlists (for WPA / Wi-Fi)
================================================== ======

1. To remove all none compatible WPA word-lengths
(8-63)

cat yourwordlistfile | pw-inspector -m 8 -M 30 > yournewfile

This will cut out all words that are NOT 8 - 30 letters in length and put them in "yournewfile". I know the max WPA length is 63 but 30 is more realistic for a potential password
================================================== ========

2. To join multi wordlist files

cat file1 file2 file3 .. etc > newfile

This would join file1 file2 file2 and put it in newfile
================================================== ========

3. To remove all duplicate words

cat wordlistfile | uniq > newfile

================================================== =========

4. to remove all html rubbish and white space and none alphanumeric entries i.e. !"!£"$%$$%^&*&(*)()_+><? (I would run this first)


cat wordlistfile | sed 's/[^a-zA-Z0-9]//g' > newfile
================================================== =========

5. To convert all to lowercase

tr '[:upper:]' '[:lower:]' < inputfile > outputfile