fdupes
fdupes copied to clipboard
FDUPES is a program for identifying or deleting duplicate files residing within specified directories.
I am currently working on some changes to fdupes to make it work a bit better with the btrfs de-duplication process duperemove. I have added some new arguments to limit...
Files copied with --reflink=auto on BTRFS are already sharing the same data. However fdupes identify them as duplicates (and in a technical sense, they are indeed duplicates). It would be...
hi, I was trying to compare the speed of execution of different tools - `duff`, `jdupes` and `fdupes` - and it appeared to me that `fdupes` missed many files, but...
On macOS 10.13 you can do `cp -c` to create a "clonefile", which is a deduplicated copy of a file that is not a hard link. I'd like to see...
_From @sandrotosi on December 20, 2015 14:4_ _From [matrixhasu](https://code.google.com/u/matrixhasu/) on October 08, 2009 21:55:20_ Debian bug `#496472` - http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=496472 It would be nice if fdupes had an option to not...
In some cases I want to compile a list of files using external tools (find, grep, whatever) and feed that to fdupes. Fdupes would then try to find duplicates only...
Several functions call `stat()` and only return a single value from the `struct stat` returned: ``` filesize() getdevice() getinode() getmtime() getctime() ``` There is also a `stat()` call at [line...
On filesystems like ZFS, OCFS2, and BtrFS it's possible to rely on copy-on-write semantics and have more than one distinct file pointing to a single copy on disk but behaving...