| Crates.io | duplicate-finder |
| lib.rs | duplicate-finder |
| version | 0.0.23 |
| created_at | 2019-08-04 13:05:18.571253+00 |
| updated_at | 2019-10-05 06:14:57.173239+00 |
| description | Simple program to find duplicated files in a filesystem |
| homepage | |
| repository | https://github.com/ivmazurenko/duplicate-finder |
| max_upload_size | |
| id | 154114 |
| size | 54,320 |
This application searches for duplicate files in input directory and its subdirectories. It is intended to be fast and simple, and use a few dependencies.
Use rustup and cargo as usual.
USAGE:
duplicate-finder [FLAGS] [OPTIONS]
FLAGS:
-h, --help Prints help information.
-n, --no-progress Disables progress bar.
-v, --version Prints version information.
OPTIONS:
-o, --output=OUTPUT Output type, `plain` and `json` are available, `plain` is default.
-p, --path=PATH Sets path to process.
Duplicate finder uses siphasher algorithm to determine files uniqueness and, as such, depends heavily on disk speeds for performance.