Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 1.41 KB

README.md

File metadata and controls

49 lines (44 loc) · 1.41 KB

dupremove

dupremove is a multithreaded tool that reads file from stdin and removes all the duplicate strings, integers and lot more.

made-with-python GitHub release PRs Welcome Open Source Love svg1 GitHub license

Installation

$ git clone https://github.com/DevanshRaghav75/dupremove.git
$ cd dupremove
$ python3 setup.py install 
$ dupremove

Usage

for ex. I have created a file called dups.txt and this is the content of dups.txt file:

┌──(root💀devansh)-[~]
└─# cat dups.txt
hack
fake
lol
dev
pro
boom
hell
hack
dev
lol
pro

as you can see dups.txt contains many duplicate strings so lets run dupremove and see what will be the ouput.

This is the output after runing: cat dups.txt | dupremove

┌──(root💀devansh)-[~]
└─# cat dups.txt | dupremove 
hack
lol
fake
dev
hell
boom
pro