ddupe CLI Docs v1.1.0

ddupe is a fast, safe CLI for finding and cleaning duplicate files by hashing their contents (SHA-256). It scans recursively, shows a progress bar plus the current file being hashed, and can delete duplicates in bulk or interactively.

Install

git clone https://github.com/Morrolan/ddupe.git
cd ddupe
cargo build --release

Binary: target/release/ddupe (or .exe on Windows).

Quick Scan

ddupe /path/to/scan

Find duplicates, prompt once before deletion.

Dry Run

ddupe --dry-run /path/to/scan

Preview duplicates without deleting.

JSON Report

ddupe --json-output /tmp/report.json /path/to/scan

Write the analysis to JSON without deleting or prompting.

Interactive

ddupe -i /path/to/scan

See numbered files per group and choose which to keep.

Features

Exit Codes

Tips

Links