https://github.com/versbinarii/deedoo
File deduplicator
https://github.com/versbinarii/deedoo
cli-app cli-tool file-deduplication rust rust-lang rust-tools tool
Last synced: 8 months ago
JSON representation
File deduplicator
- Host: GitHub
- URL: https://github.com/versbinarii/deedoo
- Owner: VersBinarii
- License: mit
- Created: 2019-05-10T12:44:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-27T20:31:48.000Z (about 4 years ago)
- Last Synced: 2025-08-28T21:33:26.248Z (10 months ago)
- Topics: cli-app, cli-tool, file-deduplication, rust, rust-lang, rust-tools, tool
- Language: Rust
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DeeDoo
Command line file deduplicator.
## About
The deduplicator does not delete any files. Any duplicates it finds are moved to the `rejects` directory with the full path preserved. The `rejects` directory location can be specified with the `-o` option. The program finds the duplicates by performing `crc32` calculation on the file content. If the `-E` flag is specified program will perform full byte-by-byte comparison to ensure files are the same.
## Installation
Install directly with cargo:
``` shell
cargo install deedoo
```
## Usage:
``` shell
USAGE:
deedoo [FLAGS] [OPTIONS]
FLAGS:
-E, --ensure Runs additional check to verify duplicate.
-h, --help Prints help information
-V, --version Prints version information
-v, --verbose Show extra logging
OPTIONS:
-o, --output Directory for duplicated files.
ARGS:
Directory to scan.
```