How to search for duplicate files?

Requests go here. If you fill a request, give it a new thread in the appropriate category and then link to it in the request thread.
Post Reply
Message
Author
User avatar
koulaxizis
Posts: 452
Joined: Sun 17 Jul 2011, 18:43
Location: Greece
Contact:

How to search for duplicate files?

#1 Post by koulaxizis »

Is there a *.pet for searching for duplicate files?
[b]Christos Koulaxizis[/b]
[i]Woof woof from Greece![/i]

[color=darkred][url=https://sourceforge.net/projects/puppystuff/][ Puppy Stuff Repository ][/url][/color]

User avatar
L18L
Posts: 3479
Joined: Sat 19 Jun 2010, 18:56
Location: www.eussenheim.de/

How to search for duplicate files?

#2 Post by L18L »

Code: Select all

find -not -empty -type f -printf "%s\n" | sort -rn | uniq -d | xargs -I{} -n1 find -type f -size {}c -print0 | xargs -0 md5sum | sort | uniq -w32 --all-repeated=separate
http://www.commandlinefu.com/commands/v ... n-md5-hash :lol:

nancy reagan
Posts: 544
Joined: Thu 22 Jan 2009, 14:20

#3 Post by nancy reagan »

I find this dupfinder.pet extremely useful, many features


http://murga-linux.com/puppy/viewtopic.php?t=68286

User avatar
koulaxizis
Posts: 452
Joined: Sun 17 Jul 2011, 18:43
Location: Greece
Contact:

#4 Post by koulaxizis »

Thank you!!! :D
[b]Christos Koulaxizis[/b]
[i]Woof woof from Greece![/i]

[color=darkred][url=https://sourceforge.net/projects/puppystuff/][ Puppy Stuff Repository ][/url][/color]

Post Reply