Linked Questions
11 questions linked to/from Find duplicate files
102
votes
3
answers
162k
views
What's the quickest way to find duplicated files? [duplicate]
I found this command used to find duplicated files but it was quite long and made me confused.
For example, if I remove -printf "%s\n", nothing came out. Why was that? Besides, why have they ...
1
vote
4
answers
565
views
How to determine whether a file is duplicated but has a different name? [duplicate]
Say you have one file called foo.pdf. How can I find out whether my machine contains another file, say bar.pdf, that has the exact same content but just a different name?
0
votes
2
answers
497
views
Find in a given directory, if there exist 2 files that have exactly the same content irrespective of their names [duplicate]
if the problem could be solved using a series of commands on the command line, it would be better for me than writing a script
0
votes
1
answer
129
views
Delete files with similar content length [duplicate]
I have 20,000 photos, half of those photos are duplicates, how can I delete
Meaning
How can I delete pictures that contain duplicate content
2
votes
0
answers
76
views
How to find (and move) all duplicate file names [duplicate]
Due to moving files back and forth from my Linux PC to a Mac, I now have a few documents that duplicate. Their names seem identical, but apparently they are codified slightly differently, like in this ...
17
votes
8
answers
6k
views
Is there a tool or script that can very quickly find duplicates by only comparing filesize and a small fraction of the file contents?
Tools like fdupes are ridiculous overkill when dealing with jpg or h264 compressed files. Two such files having the exact same filesize is already a pretty good indication of them being identical.
If, ...
9
votes
4
answers
15k
views
Search and Delete duplicate files with different names
I have a large music collection stored on my hard drive; and browsing through it, I found that I have a lot of duplicate files in some album directories. Usually the duplicates exist alongside the ...
1
vote
1
answer
3k
views
How to remove duplicated directories that contain the same files?
I have multiple directories that contain text files. Some of these directories are named differently yet contain the same text files. How do I remove all duplicated directories?
2
votes
2
answers
1k
views
Find duplicate files based on first few characters of filename
I am looking for a way in Linux shell, preferably bash to find duplicates of files based on first few letters of the filenames.
Where this would be useful:
I build mod packs for Minecraft. As of 1.14....
0
votes
1
answer
464
views
How to Do this List Comparison with Find?
I do and get a list of files where I would like to delete many duplicate backup files
find . -type f -name '._*'
I would like to find those files which have a corresponding filename
/home/masi/....
1
vote
3
answers
132
views
Port "https://github.com/taltman/scripts/blob/master/unix_utils/find-dupes.awk" to Linux/Ubuntu
Problem: finding duplicate files should be fast and not open & hash files unnecessarily. @taltman has written a beautifully fast script, here, which only uses MD5 when files of identical size have ...