jlawton / dupes

a duplicate files tool for OSX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dupes: a duplicate files tool

dupes was written to find and delete duplicate files, because I was dissatisfied with the existing solutions that I found.

I wanted my tool to:

  • work well from a remote shell
  • work well with files spread across network storage
  • incrementally handle changes to files
  • leverage existing tools

It is based on a database and hashing, so that work can be done incrementally. Files paths are read from the standard input by default, which enables me to take advantage of find, which is in the business of finding files.

Usage

By default, dupes creates a database at ~/.dupes.db to store its index. This can be changed with the DUPES_DB_PATH environment variable, or using the --db command line option.

The most basic usage is to add files to the index and list duplicates found in the index. It can be done in one step:

$ dupes run --recursive ~/Documents

But it is also sometimes useful to break down the process into multiple steps. Add files to the dupes database, recording their sizes:

$ find ~ -type f | dupes add

Hash all files in the database which haven't been hashed, but have the same size as other indexed files (this can be done independently because it can be very I/O heavy):

$ dupes hash

List all duplicate files, in groups, largest files first:

$ dupes list

Interact with the list of duplicates in a way which allows easy manual marking of files to be trashed:

$ dupes interactive --trash

See all possible commands and options:

$ dupes help
$ dupes help run

Caveats

File comparison is based on hashes (currently MD5). Having indexed ~1m files form my home directory, less than 10k files share the modal size, which gives a minuscule probability of a collision.

Dependencies

dupes is a command line tool, and I didn't want to depend on external frameworks, which would complicate installation. It is written in Swift, which currently doesn't support static libraries. So, some code has been borrowed, only slightly modified, from other open source projects:

About

a duplicate files tool for OSX

License:MIT License


Languages

Language:Swift 82.7%Language:Objective-C 10.2%Language:Vim Script 4.1%Language:Perl 3.1%