Here is something from pure_hate http://www.question-defense.com/2010...ktrack-4-final, and there are numerous other tools capable of wordlist manipulation. John is able to manipulate wordlists, and I believe hashcat is able to also
i have 14 txt files which are all dictionary/wordlist files. together they are approximately 16gb, with the largest file been 2.7gb. i was wondering what ways i would be able to remove any duplicate words from the files, as i plan to merge them into one.
so basically what i am looking for it a tool/way to find multiple instances of the same word and delete it. i was thinking a tool that opens the file and moves the words into a new file, but doesnt copy across words that are already present (not sure if that is possible).
thanks alot for any help, and sorry if the above description is confusing.
Here is something from pure_hate http://www.question-defense.com/2010...ktrack-4-final, and there are numerous other tools capable of wordlist manipulation. John is able to manipulate wordlists, and I believe hashcat is able to also
Last edited by iproute; 01-17-2011 at 08:09 PM.
if files are sorted
if not you`ll have to sort them firstCode:uniq file > file.new
or justCode:sort file | uniq > file.new
another way...Code:sort -u file > file.new
Code:awk '!x[$0]++' file > file.new![]()
If anything can go wrong, it will....
Topic covered. CLosed.
To be successful here you should read all of the following.
ForumRules
ForumFAQ
If you are new to Back|Track
Back|Track Wiki
Failure to do so will probably get your threads deleted or worse.