how do i remove all duplicate words from a txt file?
#1
I found a script to do this online in my browser but was wondering if hashcat had a build in function for it

http://www.tracemyip.org/tools/remove-du...s-in-text/
#2
You just want to remove duplicates ?!
Code:
sort file.txt | uniq
#3
or just sort -u
#4
or
https://forum.hashkiller.co.uk/topic-vie...t=5512&p=0
#5
''LC_ALL=C sort -u''

You can also ''man sort'' and look at the --parallel and -S switches to improve performance.
#6
ah, i see, its a unix command.
you had me thinking you were a wizard there for a second.
#7
This was driving me nuts.  I came back to this post later and installed cygwin and finally got it to work.  Funny how sometimes you get a wild hair up your ass about something and can't let it go.
#8
You can have sort & uniq & other *nix tools under windows without the cygwin sh** : http://gnuwin32.sourceforge.net
#9
You can also use WSL and run Ubuntu under Windows 10
#10
I'd go Msys2